- All Implemented Interfaces:
Serializable
,Comparable<CloseSessionResult.Status>
- Enclosing class:
- CloseSessionResult
Close operation result status values.
-
Enum Constant Summary
Enum ConstantDescriptionThe session close request is complete.The session close request is in progress.The session is not closeable.The session close status is unknown. -
Method Summary
Modifier and TypeMethodDescriptionstatic CloseSessionResult.Status
static CloseSessionResult.Status
Returns the enum constant of this type with the specified name.static CloseSessionResult.Status[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
UNSPECIFIED
The session close status is unknown. Servers should avoid using this value (send a NOT_FOUND error if the requested session is not known). Clients can retry the request. -
CLOSED
The session close request is complete. -
CLOSING
The session close request is in progress. The client may retry the request. -
NOT_CLOSABLE
The session is not closeable.
-
-
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
-
fromProtocol
-
toProtocol
-