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
class
EntryPoint.EntryPointAccessList
static class
EntryPoint.EntryPointType
Context of method execution
-
Constructor Summary
Constructors Constructor Description EntryPoint()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
canEqual(java.lang.Object other)
boolean
equals(java.lang.Object o)
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 executionint
hashCode()
void
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 executionjava.lang.String
toString()
-
-
-
Method Detail
-
setJsonRet
@ExcludeFromJacocoGeneratedReport protected void setJsonRet(AbstractCLType clType)
Accessor for jackson serialization- Parameters:
clType
-
-
getJsonRet
@ExcludeFromJacocoGeneratedReport protected java.lang.Object getJsonRet()
Accessor for jackson serialization- Returns:
- String if cl_type is basic type, CLType object if not.
-
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
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
canEqual
protected boolean canEqual(java.lang.Object other)
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-