Class EntryPoint
- java.lang.Object
-
- com.syntifi.casper.sdk.model.contract.EntryPoint
-
public class EntryPoint extends java.lang.ObjectNo description available- Since:
- 0.0.1
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceEntryPoint.EntryPointAccessstatic classEntryPoint.EntryPointAccessEnumstatic classEntryPoint.EntryPointAccessListstatic classEntryPoint.EntryPointBuilderstatic classEntryPoint.EntryPointTypeContext of method execution
-
Constructor Summary
Constructors Constructor Description EntryPoint()EntryPoint(EntryPoint.EntryPointAccess access, java.util.List<Parameter> args, EntryPoint.EntryPointType type, java.lang.String name, AbstractCLType ret)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EntryPoint.EntryPointBuilderbuilder()EntryPoint.EntryPointAccessgetAccess()java.util.List<Parameter>getArgs()a list ofParameterprotected java.lang.ObjectgetJsonRet()Accessor for jackson serializationjava.lang.StringgetName()the nameAbstractCLTypegetRet()the return asAbstractCLTypeEntryPoint.EntryPointTypegetType()theEntryPoint.EntryPointTypeContext of method executionvoidsetAccess(EntryPoint.EntryPointAccess access)voidsetArgs(java.util.List<Parameter> args)a list ofParameterprotected voidsetJsonRet(AbstractCLType clType)Accessor for jackson serializationvoidsetName(java.lang.String name)the namevoidsetRet(AbstractCLType ret)the return asAbstractCLTypevoidsetType(EntryPoint.EntryPointType type)theEntryPoint.EntryPointTypeContext of method execution
-
-
-
Constructor Detail
-
EntryPoint
public EntryPoint(EntryPoint.EntryPointAccess access, java.util.List<Parameter> args, EntryPoint.EntryPointType type, java.lang.String name, AbstractCLType ret)
-
EntryPoint
public EntryPoint()
-
-
Method Detail
-
setJsonRet
@ExcludeFromJacocoGeneratedReport protected void setJsonRet(AbstractCLType clType)
Accessor for jackson serialization- Parameters:
clType- the cltype for ret
-
getJsonRet
@ExcludeFromJacocoGeneratedReport protected java.lang.Object getJsonRet()
Accessor for jackson serialization- Returns:
- String if cl_type is basic type, CLType object if not.
-
builder
public static EntryPoint.EntryPointBuilder builder()
-
getAccess
public EntryPoint.EntryPointAccess getAccess()
-
getType
public EntryPoint.EntryPointType getType()
theEntryPoint.EntryPointTypeContext of method execution
-
getName
public java.lang.String getName()
the name
-
getRet
public AbstractCLType getRet()
the return asAbstractCLType
-
setAccess
public void setAccess(EntryPoint.EntryPointAccess access)
-
setType
public void setType(EntryPoint.EntryPointType type)
theEntryPoint.EntryPointTypeContext of method execution
-
setName
public void setName(java.lang.String name)
the name
-
setRet
public void setRet(AbstractCLType ret)
the return asAbstractCLType
-
-