public static enum HandlerProcessor.Direction extends Enum<HandlerProcessor.Direction>
Modifier and Type | Method and Description |
---|---|
static HandlerProcessor.Direction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HandlerProcessor.Direction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HandlerProcessor.Direction OUTBOUND
public static final HandlerProcessor.Direction INBOUND
public static HandlerProcessor.Direction[] values()
for (HandlerProcessor.Direction c : HandlerProcessor.Direction.values()) System.out.println(c);
public static HandlerProcessor.Direction 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 (c) 1997-2012 Oracle and/or its affiliates. All rights reserved.