public enum RepeatStatus extends java.lang.Enum<RepeatStatus>
Enum Constant and Description |
---|
CONTINUABLE
Indicates that processing can continue.
|
FINISHED
Indicates that processing is finished (either successful or unsuccessful)
|
Modifier and Type | Method and Description |
---|---|
RepeatStatus |
and(boolean value) |
static RepeatStatus |
continueIf(boolean continuable) |
boolean |
isContinuable() |
static RepeatStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RepeatStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RepeatStatus CONTINUABLE
public static final RepeatStatus FINISHED
public static RepeatStatus[] values()
for (RepeatStatus c : RepeatStatus.values()) System.out.println(c);
public static RepeatStatus valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static RepeatStatus continueIf(boolean continuable)
public boolean isContinuable()
public RepeatStatus and(boolean value)