org.atmosphere.wasync
Enum Decoder.Decoded.ACTION

java.lang.Object
  extended by java.lang.Enum<Decoder.Decoded.ACTION>
      extended by org.atmosphere.wasync.Decoder.Decoded.ACTION
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Decoder.Decoded.ACTION>
Enclosing class:
Decoder.Decoded<T>

public static enum Decoder.Decoded.ACTION
extends java.lang.Enum<Decoder.Decoded.ACTION>


Enum Constant Summary
ABORT
          Do not dispatch the message to Function
CONTINUE
          Continue the decoding/dispatching process.
 
Method Summary
static Decoder.Decoded.ACTION valueOf(java.lang.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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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

Method Detail

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(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null


Copyright © 2014. All Rights Reserved.