Enum Class DomainStatus
- All Implemented Interfaces:
Serializable
,Comparable<DomainStatus>
,java.lang.constant.Constable
Defines values for DomainStatus.
-
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 Awaiting.Enum value Cancelled.Enum value Confiscated.Enum value Disabled.Enum value Excluded.Enum value Expired.Enum value Failed.Enum value Held.Enum value JsonConverterFailed.Enum value Locked.Enum value Parked.Enum value Pending.Enum value Reserved.Enum value Reverted.Enum value Suspended.Enum value Transferred.Enum value Unknown.Enum value Unlocked.Enum value Unparked.Enum value Updated. -
Method Summary
Modifier and TypeMethodDescriptionstatic DomainStatus
fromString
(String value) Parses a serialized value to a DomainStatus instance.toString()
static DomainStatus
Returns the enum constant of this class with the specified name.static DomainStatus[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ACTIVE
Enum value Active. -
AWAITING
Enum value Awaiting. -
CANCELLED
Enum value Cancelled. -
CONFISCATED
Enum value Confiscated. -
DISABLED
Enum value Disabled. -
EXCLUDED
Enum value Excluded. -
EXPIRED
Enum value Expired. -
FAILED
Enum value Failed. -
HELD
Enum value Held. -
LOCKED
Enum value Locked. -
PARKED
Enum value Parked. -
PENDING
Enum value Pending. -
RESERVED
Enum value Reserved. -
REVERTED
Enum value Reverted. -
SUSPENDED
Enum value Suspended. -
TRANSFERRED
Enum value Transferred. -
UNKNOWN
Enum value Unknown. -
UNLOCKED
Enum value Unlocked. -
UNPARKED
Enum value Unparked. -
UPDATED
Enum value Updated. -
JSON_CONVERTER_FAILED
Enum value JsonConverterFailed.
-
-
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 DomainStatus instance.- Parameters:
value
- the serialized value to parse.- Returns:
- the parsed DomainStatus object, or null if unable to parse.
-
toString
- Overrides:
toString
in classEnum<DomainStatus>
-