public static enum OperationContext.OperationCode extends Enum<OperationContext.OperationCode>
Enum Constant and Description |
---|
CLOSE_CQ
Deprecated.
|
CONTAINS_KEY
Deprecated.
|
DESTROY
Deprecated.
|
EXECUTE_CQ
Deprecated.
|
EXECUTE_FUNCTION
Deprecated.
|
GET
Deprecated.
|
GET_DURABLE_CQS
Deprecated.
|
INVALIDATE
Deprecated.
|
KEY_SET
Deprecated.
|
PUT
Deprecated.
|
PUTALL
Deprecated.
|
QUERY
Deprecated.
|
REGION_CLEAR
Deprecated.
|
REGION_CREATE
Deprecated.
|
REGION_DESTROY
Deprecated.
|
REGISTER_INTEREST
Deprecated.
|
REMOVEALL
Deprecated.
|
STOP_CQ
Deprecated.
|
UNREGISTER_INTEREST
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
boolean |
isCloseCQ()
Deprecated.
Use
getOperationCode() == CLOSE_CQ instead |
boolean |
isContainsKey()
Deprecated.
Use
getOperationCode() == CONTAINS_KEY instead |
boolean |
isDestroy()
Deprecated.
Use
getOperationCode() == DESTROY instead |
boolean |
isExecuteCQ()
Deprecated.
Use
getOperationCode() == EXECUTE_CQ instead |
boolean |
isExecuteRegionFunction()
Deprecated.
Use
getOperationCode() == EXECUTE_FUNCTION instead |
boolean |
isGet()
Deprecated.
Use
getOperationCode() == GET instead |
boolean |
isGetDurableCQs()
Deprecated.
Use
getOperationCode() == GET_DURABLE_CQS instead |
boolean |
isInvalidate()
Deprecated.
Use
getOperationCode() == INVALIDATE instead |
boolean |
isKeySet()
Deprecated.
Use
getOperationCode() == KEY_SET instead |
boolean |
isPut()
Deprecated.
Use
getOperationCode() == PUT instead |
boolean |
isPutAll()
Deprecated.
Use
getOperationCode() == PUTALL instead |
boolean |
isQuery()
Deprecated.
Use
getOperationCode() == QUERY instead |
boolean |
isRegionClear()
Deprecated.
Use
getOperationCode() == REGION_CLEAR instead |
boolean |
isRegionCreate()
Deprecated.
Use
getOperationCode() == REGION_CREATE instead |
boolean |
isRegionDestroy()
Deprecated.
Use
getOperationCode() == REGION_DESTROY instead |
boolean |
isRegisterInterest()
Deprecated.
Use
getOperationCode() == REGISTER_INTEREST instead |
boolean |
isRemoveAll()
Deprecated.
Use
getOperationCode() == REMOVEALL instead |
boolean |
isStopCQ()
Deprecated.
Use
getOperationCode() == STOP_CQ instead |
boolean |
isUnregisterInterest()
Deprecated.
Use
getOperationCode() == UNREGISTER_INTEREST instead |
static OperationContext.OperationCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OperationContext.OperationCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Deprecated public static final OperationContext.OperationCode GET
@Deprecated public static final OperationContext.OperationCode PUT
@Deprecated public static final OperationContext.OperationCode PUTALL
@Deprecated public static final OperationContext.OperationCode REMOVEALL
@Deprecated public static final OperationContext.OperationCode DESTROY
@Deprecated public static final OperationContext.OperationCode INVALIDATE
@Deprecated public static final OperationContext.OperationCode REGISTER_INTEREST
@Deprecated public static final OperationContext.OperationCode UNREGISTER_INTEREST
@Deprecated public static final OperationContext.OperationCode CONTAINS_KEY
@Deprecated public static final OperationContext.OperationCode KEY_SET
@Deprecated public static final OperationContext.OperationCode QUERY
@Deprecated public static final OperationContext.OperationCode EXECUTE_CQ
@Deprecated public static final OperationContext.OperationCode STOP_CQ
@Deprecated public static final OperationContext.OperationCode CLOSE_CQ
@Deprecated public static final OperationContext.OperationCode REGION_CLEAR
@Deprecated public static final OperationContext.OperationCode REGION_CREATE
@Deprecated public static final OperationContext.OperationCode REGION_DESTROY
@Deprecated public static final OperationContext.OperationCode EXECUTE_FUNCTION
@Deprecated public static final OperationContext.OperationCode GET_DURABLE_CQS
public static OperationContext.OperationCode[] values()
for (OperationContext.OperationCode c : OperationContext.OperationCode.values()) System.out.println(c);
public static OperationContext.OperationCode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null@Deprecated public boolean isGet()
getOperationCode() == GET
instead@Deprecated public boolean isPut()
getOperationCode() == PUT
instead@Deprecated public boolean isPutAll()
getOperationCode() == PUTALL
instead@Deprecated public boolean isRemoveAll()
getOperationCode() == REMOVEALL
instead@Deprecated public boolean isDestroy()
getOperationCode() == DESTROY
instead@Deprecated public boolean isInvalidate()
getOperationCode() == INVALIDATE
instead@Deprecated public boolean isRegisterInterest()
getOperationCode() == REGISTER_INTEREST
instead@Deprecated public boolean isUnregisterInterest()
getOperationCode() == UNREGISTER_INTEREST
instead@Deprecated public boolean isContainsKey()
getOperationCode() == CONTAINS_KEY
insteadcontainsKey
operation.containsKey
operation.@Deprecated public boolean isKeySet()
getOperationCode() == KEY_SET
insteadkeySet
operation.keySet
operation.@Deprecated public boolean isQuery()
getOperationCode() == QUERY
instead@Deprecated public boolean isExecuteCQ()
getOperationCode() == EXECUTE_CQ
instead@Deprecated public boolean isStopCQ()
getOperationCode() == STOP_CQ
instead@Deprecated public boolean isCloseCQ()
getOperationCode() == CLOSE_CQ
instead@Deprecated public boolean isRegionClear()
getOperationCode() == REGION_CLEAR
instead@Deprecated public boolean isRegionCreate()
getOperationCode() == REGION_CREATE
instead@Deprecated public boolean isRegionDestroy()
getOperationCode() == REGION_DESTROY
instead@Deprecated public boolean isExecuteRegionFunction()
getOperationCode() == EXECUTE_FUNCTION
instead@Deprecated public boolean isGetDurableCQs()
getOperationCode() == GET_DURABLE_CQS
instead