Enum Class State
- All Implemented Interfaces:
Serializable
,Comparable<State>
,java.lang.constant.Constable
Defines values for State.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionEnum value deprovisioning.Enum value failed.Enum value networkSourceDeleted.Enum value provisioning.Enum value succeeded. -
Method Summary
Modifier and TypeMethodDescriptionstatic State
fromString
(String value) Parses a serialized value to a State instance.toString()
static State
Returns the enum constant of this class with the specified name.static State[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PROVISIONING
Enum value provisioning. -
DEPROVISIONING
Enum value deprovisioning. -
SUCCEEDED
Enum value succeeded. -
FAILED
Enum value failed. -
NETWORK_SOURCE_DELETED
Enum value networkSourceDeleted.
-
-
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 State instance.- Parameters:
value
- the serialized value to parse.- Returns:
- the parsed State object, or null if unable to parse.
-
toString
-