com.sun.grizzly
Enum Context.OpType
java.lang.Object
java.lang.Enum<Context.OpType>
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.
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. |
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
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.