com.alachisoft.ncache.runtime.bridge
Enum BridgeItemOpCodes
java.lang.Object
java.lang.Enum<BridgeItemOpCodes>
com.alachisoft.ncache.runtime.bridge.BridgeItemOpCodes
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<BridgeItemOpCodes>
public enum BridgeItemOpCodes
- extends java.lang.Enum<BridgeItemOpCodes>
/**
Method Summary |
int |
value()
|
static BridgeItemOpCodes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static BridgeItemOpCodes[] |
values()
Returns an array containing the constants of this enum type, in
the order they're declared. |
Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
Add
public static final BridgeItemOpCodes Add
AddDepKeyList
public static final BridgeItemOpCodes AddDepKeyList
AddHint
public static final BridgeItemOpCodes AddHint
AddSyncDependency
public static final BridgeItemOpCodes AddSyncDependency
Clear
public static final BridgeItemOpCodes Clear
CloseStream
public static final BridgeItemOpCodes CloseStream
OpenStream
public static final BridgeItemOpCodes OpenStream
RegisterKeyNotification
public static final BridgeItemOpCodes RegisterKeyNotification
Remove
public static final BridgeItemOpCodes Remove
RemoveDepKeyList
public static final BridgeItemOpCodes RemoveDepKeyList
RemoveGroup
public static final BridgeItemOpCodes RemoveGroup
RemoveKeyDep
public static final BridgeItemOpCodes RemoveKeyDep
RemoveRange
public static final BridgeItemOpCodes RemoveRange
UnregisterKeyNotification
public static final BridgeItemOpCodes UnregisterKeyNotification
Update
public static final BridgeItemOpCodes Update
UpdateIndice
public static final BridgeItemOpCodes UpdateIndice
WriteToStream
public static final BridgeItemOpCodes WriteToStream
value
public int value()
valueOf
public static BridgeItemOpCodes valueOf(java.lang.String name)
- 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:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
values
public static final BridgeItemOpCodes[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(BridgeItemOpCodes c : BridgeItemOpCodes.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared