Enum Class HostFunctionType

java.lang.Object
java.lang.Enum<HostFunctionType>
org.stellar.sdk.xdr.HostFunctionType
All Implemented Interfaces:
Serializable, Comparable<HostFunctionType>, Constable

public enum HostFunctionType extends Enum<HostFunctionType>
HostFunctionType's original definition in the XDR file is:
 enum HostFunctionType
 {
     HOST_FUNCTION_TYPE_INVOKE_CONTRACT = 0,
     HOST_FUNCTION_TYPE_CREATE_CONTRACT = 1,
     HOST_FUNCTION_TYPE_UPLOAD_CONTRACT_WASM = 2,
     HOST_FUNCTION_TYPE_CREATE_CONTRACT_V2 = 3
 };
 
  • Enum Constant Details

    • HOST_FUNCTION_TYPE_INVOKE_CONTRACT

      public static final HostFunctionType HOST_FUNCTION_TYPE_INVOKE_CONTRACT
    • HOST_FUNCTION_TYPE_CREATE_CONTRACT

      public static final HostFunctionType HOST_FUNCTION_TYPE_CREATE_CONTRACT
    • HOST_FUNCTION_TYPE_UPLOAD_CONTRACT_WASM

      public static final HostFunctionType HOST_FUNCTION_TYPE_UPLOAD_CONTRACT_WASM
    • HOST_FUNCTION_TYPE_CREATE_CONTRACT_V2

      public static final HostFunctionType HOST_FUNCTION_TYPE_CREATE_CONTRACT_V2
  • Method Details