com.sun.xml.ws.xmlfilter
Enum ProcessingStateChange
java.lang.Object
java.lang.Enum<ProcessingStateChange>
com.sun.xml.ws.xmlfilter.ProcessingStateChange
- All Implemented Interfaces:
- Serializable, Comparable<ProcessingStateChange>
public enum ProcessingStateChange
- extends Enum<ProcessingStateChange>
- Author:
- Marek Potociar (marek.potociar at sun.com)
START_BUFFERING
public static final ProcessingStateChange START_BUFFERING
RESTART_BUFFERING
public static final ProcessingStateChange RESTART_BUFFERING
STOP_BUFFERING
public static final ProcessingStateChange STOP_BUFFERING
START_FILTERING
public static final ProcessingStateChange START_FILTERING
STOP_FILTERING
public static final ProcessingStateChange STOP_FILTERING
NO_CHANGE
public static final ProcessingStateChange NO_CHANGE
values
public static ProcessingStateChange[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (ProcessingStateChange c : ProcessingStateChange.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static ProcessingStateChange 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
NullPointerException - if the argument is null
Copyright © 2005-2015 Oracle Corporation. All Rights Reserved.