public class SweepItemOutcome
extends java.lang.Object
implements java.io.Serializable
SweepItem
object by a
SweepActionHandler
implementation.Modifier and Type | Field and Description |
---|---|
static SweepItemOutcome |
FAILED
Specifies that the object failed during processing, the object is eligible
for retry.
|
static SweepItemOutcome |
FAILED_NO_RETRY
Specifies that the object failed during processing, and that the object
is not eligible for retry (fatal, non-recoverable error was detected).
|
static SweepItemOutcome |
IGNORED
Specifies that the object was ignored by the SweepActionHandler, the handler
may have filtered the object out, or may have failed before processing the
object.
|
static SweepItemOutcome |
PROCESSED
Specifies that the object was successfully processed by the SweepActionHandler.
|
Modifier and Type | Method and Description |
---|---|
static SweepItemOutcome |
getInstanceFromInt(int value)
Gets an instance of this class using its associated integer value (the
*_AS_INT fields). |
int |
getValue()
Returns an integer value associated with a specific instance of this class.
|
java.lang.String |
toString()
Returns a
String representation of this instance. |
public static final SweepItemOutcome IGNORED
public static final SweepItemOutcome PROCESSED
public static final SweepItemOutcome FAILED
public static final SweepItemOutcome FAILED_NO_RETRY
public int getValue()
public static SweepItemOutcome getInstanceFromInt(int value)
*_AS_INT
fields).value
- An integer representing a particular static instance of this class.SweepItemOutcome
instance.EngineRuntimeException
- Thrown when the value
parameter
is null
or invalid.public java.lang.String toString()
String
representation of this instance.toString
in class java.lang.Object
String
representing the instance.© Copyright IBM Corporation 2006, 2015. All rights reserved.