Package org.infinispan.server.memcached
Enum MemcachedOperation
- java.lang.Object
-
- java.lang.Enum<MemcachedOperation>
-
- org.infinispan.server.memcached.MemcachedOperation
-
- All Implemented Interfaces:
Serializable,Comparable<MemcachedOperation>
@Deprecated public enum MemcachedOperation extends Enum<MemcachedOperation>
Deprecated.since 10.1. Will be removed unless a binary protocol encoder/decoder is implemented.Memcached operations.- Since:
- 4.1
- Author:
- Galder ZamarreƱo
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AppendRequestDeprecated.DecrementRequestDeprecated.FlushAllRequestDeprecated.GetRequestDeprecated.GetWithVersionRequestDeprecated.IncrementRequestDeprecated.PrependRequestDeprecated.PutIfAbsentRequestDeprecated.PutRequestDeprecated.QuitRequestDeprecated.RemoveRequestDeprecated.ReplaceIfUnmodifiedRequestDeprecated.ReplaceRequestDeprecated.StatsRequestDeprecated.TouchRequestDeprecated.VerbosityRequestDeprecated.VersionRequestDeprecated.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static MemcachedOperationvalueOf(String name)Deprecated.Returns the enum constant of this type with the specified name.static MemcachedOperation[]values()Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PutRequest
public static final MemcachedOperation PutRequest
Deprecated.
-
TouchRequest
public static final MemcachedOperation TouchRequest
Deprecated.
-
PutIfAbsentRequest
public static final MemcachedOperation PutIfAbsentRequest
Deprecated.
-
ReplaceRequest
public static final MemcachedOperation ReplaceRequest
Deprecated.
-
ReplaceIfUnmodifiedRequest
public static final MemcachedOperation ReplaceIfUnmodifiedRequest
Deprecated.
-
GetRequest
public static final MemcachedOperation GetRequest
Deprecated.
-
GetWithVersionRequest
public static final MemcachedOperation GetWithVersionRequest
Deprecated.
-
RemoveRequest
public static final MemcachedOperation RemoveRequest
Deprecated.
-
StatsRequest
public static final MemcachedOperation StatsRequest
Deprecated.
-
AppendRequest
public static final MemcachedOperation AppendRequest
Deprecated.
-
PrependRequest
public static final MemcachedOperation PrependRequest
Deprecated.
-
IncrementRequest
public static final MemcachedOperation IncrementRequest
Deprecated.
-
DecrementRequest
public static final MemcachedOperation DecrementRequest
Deprecated.
-
FlushAllRequest
public static final MemcachedOperation FlushAllRequest
Deprecated.
-
VersionRequest
public static final MemcachedOperation VersionRequest
Deprecated.
-
VerbosityRequest
public static final MemcachedOperation VerbosityRequest
Deprecated.
-
QuitRequest
public static final MemcachedOperation QuitRequest
Deprecated.
-
-
Method Detail
-
values
public static MemcachedOperation[] values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MemcachedOperation c : MemcachedOperation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MemcachedOperation valueOf(String name)
Deprecated.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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-