Enum Class ExecutionState

java.lang.Object
java.lang.Enum<ExecutionState>
com.hedera.hashgraph.sdk.ExecutionState
All Implemented Interfaces:
Serializable, Comparable<ExecutionState>, Constable

public enum ExecutionState extends Enum<ExecutionState>
Enum for the execution states.
  • Enum Constant Details

    • SUCCESS

      public static final ExecutionState SUCCESS
      Indicates that the execution was successful
    • RETRY

      public static final ExecutionState RETRY
      Indicates that the call was successful but the operation did not complete. Retry with same/new node
    • SERVER_ERROR

      public static final ExecutionState SERVER_ERROR
      Indicates that the receiver was bad node. Retry with new node
    • REQUEST_ERROR

      public static final ExecutionState REQUEST_ERROR
      Indicates that the request was incorrect
  • Method Details

    • values

      public static ExecutionState[] 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 ExecutionState 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