Package com.rabbitmq.client.amqp
Enum Resource.State
- All Implemented Interfaces:
Serializable
,Comparable<Resource.State>
,java.lang.constant.Constable
- Enclosing interface:
Resource
Resource state.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe resource is closed.The resource is closing.The resource is open and functional.The resource is currently opening.The resource is recovering. -
Method Summary
Modifier and TypeMethodDescriptionstatic Resource.State
Returns the enum constant of this type with the specified name.static Resource.State[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
OPENING
The resource is currently opening. -
OPEN
The resource is open and functional. -
RECOVERING
The resource is recovering. -
CLOSING
The resource is closing. -
CLOSED
The resource is closed.
-
-
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
-