public static enum Scheduler.SchedulerResult.State extends java.lang.Enum<Scheduler.SchedulerResult.State>
| Enum Constant and Description |
|---|
NO_RECONFIGURATION_NEEDED |
NO_VIABLE_CONFIGURATION |
RECONFIGURATION_PLAN_ABORTED |
SUCCESS |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static Scheduler.SchedulerResult.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Scheduler.SchedulerResult.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Scheduler.SchedulerResult.State SUCCESS
public static final Scheduler.SchedulerResult.State RECONFIGURATION_PLAN_ABORTED
public static final Scheduler.SchedulerResult.State NO_VIABLE_CONFIGURATION
public static final Scheduler.SchedulerResult.State NO_RECONFIGURATION_NEEDED
public static Scheduler.SchedulerResult.State[] values()
for (Scheduler.SchedulerResult.State c : Scheduler.SchedulerResult.State.values()) System.out.println(c);
public static Scheduler.SchedulerResult.State 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 java.lang.String toString()
toString in class java.lang.Enum<Scheduler.SchedulerResult.State>