Package org.eclipse.jetty.util
Enum IteratingCallback.Action
- java.lang.Object
-
- java.lang.Enum<IteratingCallback.Action>
-
- org.eclipse.jetty.util.IteratingCallback.Action
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<IteratingCallback.Action>
- Enclosing class:
- IteratingCallback
protected static enum IteratingCallback.Action extends java.lang.Enum<IteratingCallback.Action>
The indication of the overall progress of the iteration that implementations ofIteratingCallback.process()
must return.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IDLE
Indicates thatIteratingCallback.process()
has no more work to do, but the iteration is not completed yet, probably waiting for additional events to trigger more work.SCHEDULED
Indicates thatIteratingCallback.process()
has initiated an asynchronous sub-task, where the execution has started but the callback that signals the completion of the asynchronous sub-task may have not yet been invoked.SUCCEEDED
Indicates thatIteratingCallback.process()
has completed the whole iteration successfully.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IteratingCallback.Action
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IteratingCallback.Action[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IDLE
public static final IteratingCallback.Action IDLE
Indicates thatIteratingCallback.process()
has no more work to do, but the iteration is not completed yet, probably waiting for additional events to trigger more work.
-
SCHEDULED
public static final IteratingCallback.Action SCHEDULED
Indicates thatIteratingCallback.process()
has initiated an asynchronous sub-task, where the execution has started but the callback that signals the completion of the asynchronous sub-task may have not yet been invoked.
-
SUCCEEDED
public static final IteratingCallback.Action SUCCEEDED
Indicates thatIteratingCallback.process()
has completed the whole iteration successfully.
-
-
Method Detail
-
values
public static IteratingCallback.Action[] 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 (IteratingCallback.Action c : IteratingCallback.Action.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IteratingCallback.Action valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-