public static enum ProcessorResult.Status extends Enum<ProcessorResult.Status>
ProcessorResult
.Enum Constant and Description |
---|
COMPLETE |
ERROR |
LEAVE |
NOT_RUN |
REREGISTER |
RERUN |
TERMINATE |
Modifier and Type | Method and Description |
---|---|
static ProcessorResult.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcessorResult.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessorResult.Status COMPLETE
public static final ProcessorResult.Status LEAVE
public static final ProcessorResult.Status REREGISTER
public static final ProcessorResult.Status RERUN
public static final ProcessorResult.Status ERROR
public static final ProcessorResult.Status TERMINATE
public static final ProcessorResult.Status NOT_RUN
public static ProcessorResult.Status[] values()
for (ProcessorResult.Status c : ProcessorResult.Status.values()) System.out.println(c);
public static ProcessorResult.Status 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 © 2014 Oracle Corporation. All rights reserved.