public static enum RedisIO.Write.Method extends java.lang.Enum<RedisIO.Write.Method>
| Enum Constant and Description | 
|---|
| APPENDUse APPEND command. | 
| DECRBYUse DECRBY command. | 
| INCRBYUse INCBY command. | 
| LPUSHUse LPUSH command. | 
| PFADDUse PFADD command. | 
| RPUSHUse RPUSH command. | 
| SADDUse SADD command. | 
| SETUse SET command. | 
| Modifier and Type | Method and Description | 
|---|---|
| static RedisIO.Write.Method | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static RedisIO.Write.Method[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final RedisIO.Write.Method APPEND
public static final RedisIO.Write.Method SET
public static final RedisIO.Write.Method LPUSH
public static final RedisIO.Write.Method RPUSH
public static final RedisIO.Write.Method SADD
public static final RedisIO.Write.Method PFADD
public static final RedisIO.Write.Method INCRBY
public static final RedisIO.Write.Method DECRBY
public static RedisIO.Write.Method[] values()
for (RedisIO.Write.Method c : RedisIO.Write.Method.values()) System.out.println(c);
public static RedisIO.Write.Method valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null