Class EntryPointV1
- java.lang.Object
-
- com.casper.sdk.model.contract.entrypoint.EntryPointV1
-
public class EntryPointV1 extends java.lang.ObjectType signature of a method. Order of arguments matter since can be referenced by index as well as name.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classEntryPointV1.EntryPointV1Builder
-
Constructor Summary
Constructors Constructor Description EntryPointV1()EntryPointV1(java.lang.String name, EntryPointAccess access, AbstractCLType ret, EntryPointType entryPointType, java.util.List<EntryPointArg> args)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EntryPointV1.EntryPointV1Builderbuilder()EntryPointAccessgetAccess()java.util.List<EntryPointArg>getArgs()EntryPointTypegetEntryPointType()java.lang.StringgetName()AbstractCLTypegetRet()voidsetAccess(EntryPointAccess access)voidsetArgs(java.util.List<EntryPointArg> args)voidsetEntryPointType(EntryPointType entryPointType)voidsetName(java.lang.String name)voidsetRet(AbstractCLType ret)
-
-
-
Constructor Detail
-
EntryPointV1
public EntryPointV1(java.lang.String name, EntryPointAccess access, AbstractCLType ret, EntryPointType entryPointType, java.util.List<EntryPointArg> args)
-
EntryPointV1
public EntryPointV1()
-
-
Method Detail
-
builder
public static EntryPointV1.EntryPointV1Builder builder()
-
getName
public java.lang.String getName()
-
getAccess
public EntryPointAccess getAccess()
-
getRet
public AbstractCLType getRet()
-
getEntryPointType
public EntryPointType getEntryPointType()
-
getArgs
public java.util.List<EntryPointArg> getArgs()
-
setName
public void setName(java.lang.String name)
-
setAccess
public void setAccess(EntryPointAccess access)
-
setRet
public void setRet(AbstractCLType ret)
-
setEntryPointType
public void setEntryPointType(EntryPointType entryPointType)
-
setArgs
public void setArgs(java.util.List<EntryPointArg> args)
-
-