Enum Projection
- java.lang.Object
-
- java.lang.Enum<Projection>
-
- org.pepstock.charba.client.geo.enums.Projection
-
- All Implemented Interfaces:
Serializable
,Comparable<Projection>
,Key
public enum Projection extends Enum<Projection> implements Key
Enumerates the possible map projections which are a way to flatten a globe's surface into a plane in order to make a map.- Author:
- Andrea "Stock" Stocchero
-
-
Enum Constant Summary
Enum Constants Enum Constant 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.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
value()
Returns the name value of propertystatic 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.
-
-
-
Enum Constant Detail
-
AZIMUTHAL_EQUAL_AREA
public static final Projection AZIMUTHAL_EQUAL_AREA
Projection azimuthalEqualArea.
-
AZIMUTHAL_EQUIDISTANT
public static final Projection AZIMUTHAL_EQUIDISTANT
Projection azimuthalEquidistant.
-
GNOMONIC
public static final Projection GNOMONIC
Projection gnomonic.
-
ORTHOGRAPHIC
public static final Projection ORTHOGRAPHIC
Projection orthographic.
-
STEREOGRAPHIC
public static final Projection STEREOGRAPHIC
Projection stereographic.
-
EQUAL_EARTH
public static final Projection EQUAL_EARTH
Projection equalEarth.
-
ALBERS
public static final Projection ALBERS
Projection albers.
-
ALBERS_USA
public static final Projection ALBERS_USA
Projection albersUsa.
-
CONIC_CONFORMAL
public static final Projection CONIC_CONFORMAL
Projection conicConformal.
-
CONIC_EQUAL_AREA
public static final Projection CONIC_EQUAL_AREA
Projection conicEqualArea.
-
CONIC_EQUIDISTANT
public static final Projection CONIC_EQUIDISTANT
Projection conicEquidistant.
-
EQUIRECTANGULAR
public static final Projection EQUIRECTANGULAR
Projection equirectangular.
-
MERCATOR
public static final Projection MERCATOR
Projection mercator.
-
TRANSVERSE_MERCATOR
public static final Projection TRANSVERSE_MERCATOR
Projection transverseMercator.
-
NATURAL_EARTH1
public static final Projection NATURAL_EARTH1
Projection naturalEarth1.
-
-
Method Detail
-
values
public static Projection[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Projection c : Projection.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Projection valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-