public enum MemcachedDecoderState extends Enum<MemcachedDecoderState>
Enum Constant and Description |
---|
DECODE_HEADER |
DECODE_KEY |
DECODE_PARAMETERS |
DECODE_VALUE |
Modifier and Type | Method and Description |
---|---|
static MemcachedDecoderState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MemcachedDecoderState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MemcachedDecoderState DECODE_HEADER
public static final MemcachedDecoderState DECODE_KEY
public static final MemcachedDecoderState DECODE_PARAMETERS
public static final MemcachedDecoderState DECODE_VALUE
public static MemcachedDecoderState[] values()
for (MemcachedDecoderState c : MemcachedDecoderState.values()) System.out.println(c);
public static MemcachedDecoderState valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2024 JBoss, a division of Red Hat. All rights reserved.