public enum GroupDistance extends Enum<GroupDistance>
Modifier and Type | Method and Description |
---|---|
static GroupDistance |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GroupDistance[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroupDistance SAME
public static final GroupDistance NEAR
public static final GroupDistance MID
public static final GroupDistance FAR
public static GroupDistance[] values()
for (GroupDistance c : GroupDistance.values()) System.out.println(c);
public static GroupDistance valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null