public enum DecoderState extends Enum<DecoderState>
Enum Constant and Description |
---|
DECODE_HEADER |
DECODE_KEY |
DECODE_PARAMETERS |
DECODE_VALUE |
Modifier and Type | Method and Description |
---|---|
static DecoderState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DecoderState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DecoderState DECODE_HEADER
public static final DecoderState DECODE_KEY
public static final DecoderState DECODE_PARAMETERS
public static final DecoderState DECODE_VALUE
public static DecoderState[] values()
for (DecoderState c : DecoderState.values()) System.out.println(c);
public static DecoderState 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 © 2014 JBoss, a division of Red Hat. All Rights Reserved.