com.sun.grizzly
Enum Context.OpType

java.lang.Object
  extended by java.lang.Enum<Context.OpType>
      extended by com.sun.grizzly.Context.OpType
All Implemented Interfaces:
Serializable, Comparable<Context.OpType>
Enclosing class:
Context

public static enum Context.OpType
extends Enum<Context.OpType>

The list of possible SelectionKey.OP_XXXX.


Enum Constant Summary
OP_ACCEPT
           
OP_CONNECT
           
OP_READ
           
OP_READ_WRITE
           
OP_WRITE
           
 
Method Summary
static Context.OpType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Context.OpType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

OP_READ

public static final Context.OpType OP_READ

OP_WRITE

public static final Context.OpType OP_WRITE

OP_CONNECT

public static final Context.OpType OP_CONNECT

OP_READ_WRITE

public static final Context.OpType OP_READ_WRITE

OP_ACCEPT

public static final Context.OpType OP_ACCEPT
Method Detail

values

public static final Context.OpType[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(Context.OpType c : Context.OpType.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static Context.OpType 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


Copyright © 2008 SUN Microsystems. All Rights Reserved.