Uses of Class
net.spy.memcached.ops.StoreType

Packages that use StoreType
net.spy.memcached Memcached client and transformation utils 
net.spy.memcached.ops Fundamental protocol operation interfaces 
net.spy.memcached.protocol.ascii Low-level operations for the memcached ascii protocol 
net.spy.memcached.protocol.binary Low-level operations for the memcached binary protocol 
 

Uses of StoreType in net.spy.memcached
 

Methods in net.spy.memcached with parameters of type StoreType
 CASOperation OperationFactory.cas(StoreType t, String key, long casId, int flags, int exp, byte[] data, OperationCallback cb)
          Create a CAS operation.
 StoreOperation OperationFactory.store(StoreType storeType, String key, int flags, int exp, byte[] data, OperationCallback cb)
          Create a store operation.
 

Uses of StoreType in net.spy.memcached.ops
 

Methods in net.spy.memcached.ops that return StoreType
 StoreType CASOperation.getStoreType()
          Get the type of storage used by this CASOperation.
 StoreType StoreOperation.getStoreType()
          Get the store type used by this operation.
static StoreType StoreType.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static StoreType[] StoreType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Uses of StoreType in net.spy.memcached.protocol.ascii
 

Methods in net.spy.memcached.protocol.ascii with parameters of type StoreType
 CASOperation AsciiOperationFactory.cas(StoreType type, String key, long casId, int flags, int exp, byte[] data, OperationCallback cb)
           
 StoreOperation AsciiOperationFactory.store(StoreType storeType, String key, int flags, int exp, byte[] data, OperationCallback cb)
           
 

Uses of StoreType in net.spy.memcached.protocol.binary
 

Methods in net.spy.memcached.protocol.binary with parameters of type StoreType
 CASOperation BinaryOperationFactory.cas(StoreType type, String key, long casId, int flags, int exp, byte[] data, OperationCallback cb)
           
 StoreOperation BinaryOperationFactory.store(StoreType storeType, String key, int flags, int exp, byte[] data, OperationCallback cb)