public static enum HandlerDesc.HandlerType extends Enum<HandlerDesc.HandlerType>
The type of the handler.
| Enum Constant and Description |
|---|
Bridge
Bridge handler.
|
Input
Input handler.
|
Output
Output handler.
|
| Modifier and Type | Method and Description |
|---|---|
static HandlerDesc.HandlerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HandlerDesc.HandlerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HandlerDesc.HandlerType Input
public static final HandlerDesc.HandlerType Output
public static final HandlerDesc.HandlerType Bridge
public static HandlerDesc.HandlerType[] values()
for (HandlerDesc.HandlerType c : HandlerDesc.HandlerType.values()) System.out.println(c);
public static HandlerDesc.HandlerType 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 © 2014. All Rights Reserved.