Enum Class RecommendedIndexState
- All Implemented Interfaces:
Serializable
,Comparable<RecommendedIndexState>
,java.lang.constant.Constable
Defines values for RecommendedIndexState.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionEnum value Active.Enum value Blocked.Enum value Executing.Enum value Expired.Enum value Ignored.Enum value Pending.Enum value Pending Revert.Enum value Reverted.Enum value Reverting.Enum value Success.Enum value Verifying. -
Method Summary
Modifier and TypeMethodDescriptionstatic RecommendedIndexState
fromString
(String value) Parses a serialized value to a RecommendedIndexState instance.toString()
static RecommendedIndexState
Returns the enum constant of this class with the specified name.static RecommendedIndexState[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ACTIVE
Enum value Active. -
PENDING
Enum value Pending. -
EXECUTING
Enum value Executing. -
VERIFYING
Enum value Verifying. -
PENDING_REVERT
Enum value Pending Revert. -
REVERTING
Enum value Reverting. -
REVERTED
Enum value Reverted. -
IGNORED
Enum value Ignored. -
EXPIRED
Enum value Expired. -
BLOCKED
Enum value Blocked. -
SUCCESS
Enum value Success.
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-
fromString
Parses a serialized value to a RecommendedIndexState instance.- Parameters:
value
- the serialized value to parse.- Returns:
- the parsed RecommendedIndexState object, or null if unable to parse.
-
toString
- Overrides:
toString
in classEnum<RecommendedIndexState>
-