org.atmosphere.wasync
Enum Decoder.Decoded.ACTION
java.lang.Object
java.lang.Enum<Decoder.Decoded.ACTION>
org.atmosphere.wasync.Decoder.Decoded.ACTION
- All Implemented Interfaces:
- Serializable, Comparable<Decoder.Decoded.ACTION>
- Enclosing class:
- Decoder.Decoded<T>
public static enum Decoder.Decoded.ACTION
- extends Enum<Decoder.Decoded.ACTION>
|
Enum Constant Summary |
ABORT
Do not dispatch the message to Function |
CONTINUE
Continue the decoding/dispatching process. |
CONTINUE
public static final Decoder.Decoded.ACTION CONTINUE
- Continue the decoding/dispatching process.
ABORT
public static final Decoder.Decoded.ACTION ABORT
- Do not dispatch the message to
Function
values
public static Decoder.Decoded.ACTION[] values()
- 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 (Decoder.Decoded.ACTION c : Decoder.Decoded.ACTION.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Decoder.Decoded.ACTION valueOf(String name)
- 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 name
NullPointerException - if the argument is null
Copyright © 2013. All Rights Reserved.