com.sun.xml.ws.handler
Enum HandlerProcessor.Direction
java.lang.Object
java.lang.Enum<HandlerProcessor.Direction>
com.sun.xml.ws.handler.HandlerProcessor.Direction
- All Implemented Interfaces:
- Serializable, Comparable<HandlerProcessor.Direction>
- Enclosing class:
- HandlerProcessor<C extends MessageUpdatableContext>
public static enum HandlerProcessor.Direction
- extends Enum<HandlerProcessor.Direction>
OUTBOUND
public static final HandlerProcessor.Direction OUTBOUND
INBOUND
public static final HandlerProcessor.Direction INBOUND
values
public static final HandlerProcessor.Direction[] 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(HandlerProcessor.Direction c : HandlerProcessor.Direction.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static HandlerProcessor.Direction 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