Class EntryPoint
- java.lang.Object
-
- com.syntifi.casper.sdk.model.contract.EntryPoint
-
public class EntryPoint extends java.lang.Object
No description available- Since:
- 0.0.1
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
EntryPoint.EntryPointAccess
static class
EntryPoint.EntryPointAccessEnum
static class
EntryPoint.EntryPointAccessList
static class
EntryPoint.EntryPointBuilder
static class
EntryPoint.EntryPointType
Context 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.EntryPointBuilder
builder()
EntryPoint.EntryPointAccess
getAccess()
java.util.List<Parameter>
getArgs()
a list ofParameter
protected java.lang.Object
getJsonRet()
Accessor for jackson serializationjava.lang.String
getName()
the nameAbstractCLType
getRet()
the return asAbstractCLType
EntryPoint.EntryPointType
getType()
theEntryPoint.EntryPointType
Context of method executionvoid
setAccess(EntryPoint.EntryPointAccess access)
void
setArgs(java.util.List<Parameter> args)
a list ofParameter
protected void
setJsonRet(AbstractCLType clType)
Accessor for jackson serializationvoid
setName(java.lang.String name)
the namevoid
setRet(AbstractCLType ret)
the return asAbstractCLType
void
setType(EntryPoint.EntryPointType type)
theEntryPoint.EntryPointType
Context 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.EntryPointType
Context 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.EntryPointType
Context of method execution
-
setName
public void setName(java.lang.String name)
the name
-
setRet
public void setRet(AbstractCLType ret)
the return asAbstractCLType
-
-