Enum RemoteRequestType
- All Implemented Interfaces:
- Serializable,- Comparable<RemoteRequestType>
The different types of requests
- 
Enum Constant SummaryEnum 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 SummaryModifier and TypeMethodDescriptionstatic RemoteRequestTypeReturns 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_CHECKAlive check request type.
- 
GETGet request type.
- 
GET_MULTIPLEGet Multiple request type.
- 
GET_MATCHINGGet Matching request type.
- 
UPDATEUpdate request type.
- 
REMOVERemove request type.
- 
REMOVE_ALLRemove All request type.
- 
GET_KEYSETGet keys request type.
- 
DISPOSEDispose request type.
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
 
-