public static enum ReplayAlgorithm.CloseResult extends java.lang.Enum<ReplayAlgorithm.CloseResult>
| Enum Constant and Description |
|---|
CLOSEDINFEASIBLE |
CLOSEDSUCCESSFUL |
FINALMARKINGFOUND |
REQUEUED |
RESTARTNEEDED |
| Modifier and Type | Method and Description |
|---|---|
static ReplayAlgorithm.CloseResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReplayAlgorithm.CloseResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReplayAlgorithm.CloseResult CLOSEDSUCCESSFUL
public static final ReplayAlgorithm.CloseResult CLOSEDINFEASIBLE
public static final ReplayAlgorithm.CloseResult FINALMARKINGFOUND
public static final ReplayAlgorithm.CloseResult REQUEUED
public static final ReplayAlgorithm.CloseResult RESTARTNEEDED
public static ReplayAlgorithm.CloseResult[] values()
for (ReplayAlgorithm.CloseResult c : ReplayAlgorithm.CloseResult.values()) System.out.println(c);
public static ReplayAlgorithm.CloseResult 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 null