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