Enum RemoteRequestType
- All Implemented Interfaces:
Serializable
,Comparable<RemoteRequestType>
The different types of requests
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAlive check request type.Dispose request type.Get request type.Get keys request type.Get Matching request type.Get Multiple request type.Remove request type.Remove All request type.Update request type. -
Method Summary
Modifier and TypeMethodDescriptionstatic RemoteRequestType
Returns the enum constant of this type with the specified name.static RemoteRequestType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ALIVE_CHECK
Alive check request type. -
GET
Get request type. -
GET_MULTIPLE
Get Multiple request type. -
GET_MATCHING
Get Matching request type. -
UPDATE
Update request type. -
REMOVE
Remove request type. -
REMOVE_ALL
Remove All request type. -
GET_KEYSET
Get keys request type. -
DISPOSE
Dispose request type.
-
-
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
-