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