Enum Class Abi.MessageBodyType

java.lang.Object
java.lang.Enum<Abi.MessageBodyType>
tech.deplant.java4ever.binding.Abi.MessageBodyType
All Implemented Interfaces:
Serializable, Comparable<Abi.MessageBodyType>, Constable
Enclosing class:
Abi

public static enum Abi.MessageBodyType extends Enum<Abi.MessageBodyType>
  • Enum Constant Details

    • Input

      public static final Abi.MessageBodyType Input
      Message contains the input of the ABI function.
    • Output

      public static final Abi.MessageBodyType Output
      Message contains the output of the ABI function.
    • InternalOutput

      public static final Abi.MessageBodyType InternalOutput
      Message contains the input of the imported ABI function. Occurs when contract sends an internal message to othercontract.
    • Event

      public static final Abi.MessageBodyType Event
      Message contains the input of the ABI event.
  • Method Details

    • values

      public static Abi.MessageBodyType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Abi.MessageBodyType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null