public static enum Decoder.Decoded.ACTION extends Enum<Decoder.Decoded.ACTION>
| Enum Constant and Description |
|---|
ABORT
Do not dispatch the message to
Function |
CONTINUE
Continue the decoding/dispatching process.
|
| Modifier and Type | Method and Description |
|---|---|
static Decoder.Decoded.ACTION |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Decoder.Decoded.ACTION[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Decoder.Decoded.ACTION CONTINUE
public static final Decoder.Decoded.ACTION ABORT
Functionpublic static Decoder.Decoded.ACTION[] values()
for (Decoder.Decoded.ACTION c : Decoder.Decoded.ACTION.values()) System.out.println(c);
public static Decoder.Decoded.ACTION 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 © 2013. All Rights Reserved.