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 SummaryEnum Constants Enum Constant Description ALBERSProjection albers.ALBERS_USAProjection albersUsa.AZIMUTHAL_EQUAL_AREAProjection azimuthalEqualArea.AZIMUTHAL_EQUIDISTANTProjection azimuthalEquidistant.CONIC_CONFORMALProjection conicConformal.CONIC_EQUAL_AREAProjection conicEqualArea.CONIC_EQUIDISTANTProjection conicEquidistant.EQUAL_EARTHProjection equalEarth.EQUIRECTANGULARProjection equirectangular.GNOMONICProjection gnomonic.MERCATORProjection mercator.NATURAL_EARTH1Projection naturalEarth1.ORTHOGRAPHICProjection orthographic.STEREOGRAPHICProjection stereographic.TRANSVERSE_MERCATORProjection transverseMercator.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringvalue()Returns the name value of propertystatic ProjectionvalueOf(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_AREApublic static final Projection AZIMUTHAL_EQUAL_AREA Projection azimuthalEqualArea.
 - 
AZIMUTHAL_EQUIDISTANTpublic static final Projection AZIMUTHAL_EQUIDISTANT Projection azimuthalEquidistant.
 - 
GNOMONICpublic static final Projection GNOMONIC Projection gnomonic.
 - 
ORTHOGRAPHICpublic static final Projection ORTHOGRAPHIC Projection orthographic.
 - 
STEREOGRAPHICpublic static final Projection STEREOGRAPHIC Projection stereographic.
 - 
EQUAL_EARTHpublic static final Projection EQUAL_EARTH Projection equalEarth.
 - 
ALBERSpublic static final Projection ALBERS Projection albers.
 - 
ALBERS_USApublic static final Projection ALBERS_USA Projection albersUsa.
 - 
CONIC_CONFORMALpublic static final Projection CONIC_CONFORMAL Projection conicConformal.
 - 
CONIC_EQUAL_AREApublic static final Projection CONIC_EQUAL_AREA Projection conicEqualArea.
 - 
CONIC_EQUIDISTANTpublic static final Projection CONIC_EQUIDISTANT Projection conicEquidistant.
 - 
EQUIRECTANGULARpublic static final Projection EQUIRECTANGULAR Projection equirectangular.
 - 
MERCATORpublic static final Projection MERCATOR Projection mercator.
 - 
TRANSVERSE_MERCATORpublic static final Projection TRANSVERSE_MERCATOR Projection transverseMercator.
 - 
NATURAL_EARTH1public static final Projection NATURAL_EARTH1 Projection naturalEarth1.
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 
- 
 
-