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

Packages that use Mutator
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 Mutator in net.spy.memcached
 

Methods in net.spy.memcached with parameters of type Mutator
 MutatorOperation OperationFactory.mutate(Mutator m, String key, int by, long def, int exp, OperationCallback cb)
          Create a mutator operation.
 

Uses of Mutator in net.spy.memcached.ops
 

Methods in net.spy.memcached.ops that return Mutator
 Mutator MutatorOperation.getType()
          Get the mutator type used for this operation.
static Mutator Mutator.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Mutator[] Mutator.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

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

Methods in net.spy.memcached.protocol.ascii with parameters of type Mutator
 MutatorOperation AsciiOperationFactory.mutate(Mutator m, String key, int by, long exp, int def, OperationCallback cb)
           
 

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

Methods in net.spy.memcached.protocol.binary with parameters of type Mutator
 MutatorOperation BinaryOperationFactory.mutate(Mutator m, String key, int by, long def, int exp, OperationCallback cb)