Class EntryPointValue
- java.lang.Object
-
- com.casper.sdk.model.contract.entrypoint.EntryPointValue
-
public class EntryPointValue extends java.lang.ObjectThe encapsulated representation of entry points.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classEntryPointValue.EntryPointValueBuilder
-
Constructor Summary
Constructors Constructor Description EntryPointValue()EntryPointValue(EntryPoint v1, EntryPointV2 v2)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EntryPointValue.EntryPointValueBuilderbuilder()EntryPointgetV1()Entry points to be executed against the V1 Casper VM.EntryPointV2getV2()Entry points to be executed against the V2 Casper VM.voidsetV1(EntryPoint v1)Entry points to be executed against the V1 Casper VM.voidsetV2(EntryPointV2 v2)Entry points to be executed against the V2 Casper VM.
-
-
-
Constructor Detail
-
EntryPointValue
public EntryPointValue(EntryPoint v1, EntryPointV2 v2)
-
EntryPointValue
public EntryPointValue()
-
-
Method Detail
-
builder
public static EntryPointValue.EntryPointValueBuilder builder()
-
getV1
public EntryPoint getV1()
Entry points to be executed against the V1 Casper VM.
-
getV2
public EntryPointV2 getV2()
Entry points to be executed against the V2 Casper VM.
-
setV1
public void setV1(EntryPoint v1)
Entry points to be executed against the V1 Casper VM.
-
setV2
public void setV2(EntryPointV2 v2)
Entry points to be executed against the V2 Casper VM.
-
-