com.alachisoft.ncache.runtime.bridge
Enum BridgeItemOpCodes

java.lang.Object
  extended by java.lang.Enum<BridgeItemOpCodes>
      extended by com.alachisoft.ncache.runtime.bridge.BridgeItemOpCodes
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<BridgeItemOpCodes>

public enum BridgeItemOpCodes
extends java.lang.Enum<BridgeItemOpCodes>

/**


Enum Constant Summary
Add
           
AddDepKeyList
           
AddHint
           
AddSyncDependency
           
Clear
           
CloseStream
           
OpenStream
           
RegisterKeyNotification
           
Remove
           
RemoveDepKeyList
           
RemoveGroup
           
RemoveKeyDep
           
RemoveRange
           
UnregisterKeyNotification
           
Update
           
UpdateIndice
           
WriteToStream
           
 
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
 

Enum Constant Detail

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
Method Detail

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