public static enum AzimuthalEquidistant.Mode extends java.lang.Enum<AzimuthalEquidistant.Mode>
Enum Constant and Description |
---|
EQUATORIAL
Equator
|
NORTH_POLAR
North pole
|
OBLIQUE
Oblique
|
SOUTH_POLAR
South pole
|
Modifier and Type | Method and Description |
---|---|
static AzimuthalEquidistant.Mode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AzimuthalEquidistant.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AzimuthalEquidistant.Mode NORTH_POLAR
public static final AzimuthalEquidistant.Mode SOUTH_POLAR
public static final AzimuthalEquidistant.Mode EQUATORIAL
public static final AzimuthalEquidistant.Mode OBLIQUE
public static AzimuthalEquidistant.Mode[] values()
for (AzimuthalEquidistant.Mode c : AzimuthalEquidistant.Mode.values()) System.out.println(c);
public static AzimuthalEquidistant.Mode 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