public enum Projection extends Enum<Projection> implements Key
Enum Constant and Description |
---|
ALBERS
Projection albers.
|
ALBERS_USA
Projection albersUsa.
|
AZIMUTHAL_EQUAL_AREA
Projection azimuthalEqualArea.
|
AZIMUTHAL_EQUIDISTANT
Projection azimuthalEquidistant.
|
CONIC_CONFORMAL
Projection conicConformal.
|
CONIC_EQUAL_AREA
Projection conicEqualArea.
|
CONIC_EQUIDISTANT
Projection conicEquidistant.
|
EQUAL_EARTH
Projection equalEarth.
|
EQUIRECTANGULAR
Projection equirectangular.
|
GNOMONIC
Projection gnomonic.
|
MERCATOR
Projection mercator.
|
NATURAL_EARTH1
Projection naturalEarth1.
|
ORTHOGRAPHIC
Projection orthographic.
|
STEREOGRAPHIC
Projection stereographic.
|
TRANSVERSE_MERCATOR
Projection transverseMercator.
|
Modifier and Type | Method and Description |
---|---|
String |
value()
Returns the name value of property
|
static Projection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Projection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
checkAndGetIfValid, checkIfValid, compare, create, equals, getKeyByValue, getKeyByValue, hasKeyByValue, isValid
public static final Projection AZIMUTHAL_EQUAL_AREA
public static final Projection AZIMUTHAL_EQUIDISTANT
public static final Projection GNOMONIC
public static final Projection ORTHOGRAPHIC
public static final Projection STEREOGRAPHIC
public static final Projection EQUAL_EARTH
public static final Projection ALBERS
public static final Projection ALBERS_USA
public static final Projection CONIC_CONFORMAL
public static final Projection CONIC_EQUAL_AREA
public static final Projection CONIC_EQUIDISTANT
public static final Projection EQUIRECTANGULAR
public static final Projection MERCATOR
public static final Projection TRANSVERSE_MERCATOR
public static final Projection NATURAL_EARTH1
public static Projection[] values()
for (Projection c : Projection.values()) System.out.println(c);
public static Projection 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