Enum InterconnectState
- All Implemented Interfaces:
Serializable
,Comparable<InterconnectState>
,java.lang.constant.Constable
State of the interconnect.
-
Requested: The initial state of an interconnect. The interconnect stays in the requested state until the Letter of Authorization (LOA) is sent to the customer.
-
Pending>: The interconnect has been approved, and is being initialized.
-
Available: The network link is up, and the interconnect is ready for use.
-
Down: The network link is down.
-
Deleting: The interconnect is in the process of being deleted.
-
Deleted: The interconnect has been deleted.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic InterconnectState
Use this in place of valueOf.toString()
static InterconnectState
Returns the enum constant of this type with the specified name.static InterconnectState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
Requested
-
Pending
-
Available
-
Down
-
Deleting
-
Deleted
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
- Overrides:
toString
in classEnum<InterconnectState>
-
fromValue
Use this in place of valueOf.- Parameters:
value
- real value- Returns:
- InterconnectState corresponding to the value
-