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