Package ucar.unidata.geoloc.ogc
Enum EPSG_OGC_CF_Helper.ProjectionStandardsInfo
- java.lang.Object
-
- java.lang.Enum<EPSG_OGC_CF_Helper.ProjectionStandardsInfo>
-
- ucar.unidata.geoloc.ogc.EPSG_OGC_CF_Helper.ProjectionStandardsInfo
-
- All Implemented Interfaces:
Serializable
,Comparable<EPSG_OGC_CF_Helper.ProjectionStandardsInfo>
- Enclosing class:
- EPSG_OGC_CF_Helper
public static enum EPSG_OGC_CF_Helper.ProjectionStandardsInfo extends Enum<EPSG_OGC_CF_Helper.ProjectionStandardsInfo>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCfName()
int
getEpsgCode()
String
getEpsgName()
String
getOgcName()
static EPSG_OGC_CF_Helper.ProjectionStandardsInfo
getProjectionByCfName(String cfName)
static EPSG_OGC_CF_Helper.ProjectionStandardsInfo
getProjectionByEpsgCode(int epsgCode)
static EPSG_OGC_CF_Helper.ProjectionStandardsInfo
getProjectionByEpsgName(String epsgName)
static EPSG_OGC_CF_Helper.ProjectionStandardsInfo
getProjectionByOgcName(String ogcName)
String
toString()
static EPSG_OGC_CF_Helper.ProjectionStandardsInfo
valueOf(String name)
Returns the enum constant of this type with the specified name.static EPSG_OGC_CF_Helper.ProjectionStandardsInfo[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Unknown
public static final EPSG_OGC_CF_Helper.ProjectionStandardsInfo Unknown
-
Albers_Conic_Equal_Area
public static final EPSG_OGC_CF_Helper.ProjectionStandardsInfo Albers_Conic_Equal_Area
-
Azimuthal_Equidistant
public static final EPSG_OGC_CF_Helper.ProjectionStandardsInfo Azimuthal_Equidistant
-
Lambert_Azimuthal_Equal_Area
public static final EPSG_OGC_CF_Helper.ProjectionStandardsInfo Lambert_Azimuthal_Equal_Area
-
Lambert_Conformal_Conic_2SP
public static final EPSG_OGC_CF_Helper.ProjectionStandardsInfo Lambert_Conformal_Conic_2SP
-
Polar_Stereographic
public static final EPSG_OGC_CF_Helper.ProjectionStandardsInfo Polar_Stereographic
-
Rotated_Pole
public static final EPSG_OGC_CF_Helper.ProjectionStandardsInfo Rotated_Pole
-
Stereographic
public static final EPSG_OGC_CF_Helper.ProjectionStandardsInfo Stereographic
-
Transverse_Mercator
public static final EPSG_OGC_CF_Helper.ProjectionStandardsInfo Transverse_Mercator
-
Latitude_Longitude
public static final EPSG_OGC_CF_Helper.ProjectionStandardsInfo Latitude_Longitude
-
Vertical_Perspective
public static final EPSG_OGC_CF_Helper.ProjectionStandardsInfo Vertical_Perspective
-
Lambert_Cylindrical_Equal_Area
public static final EPSG_OGC_CF_Helper.ProjectionStandardsInfo Lambert_Cylindrical_Equal_Area
-
Mercator
public static final EPSG_OGC_CF_Helper.ProjectionStandardsInfo Mercator
-
Orthographic
public static final EPSG_OGC_CF_Helper.ProjectionStandardsInfo Orthographic
-
-
Method Detail
-
values
public static EPSG_OGC_CF_Helper.ProjectionStandardsInfo[] 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 (EPSG_OGC_CF_Helper.ProjectionStandardsInfo c : EPSG_OGC_CF_Helper.ProjectionStandardsInfo.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EPSG_OGC_CF_Helper.ProjectionStandardsInfo 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
-
getOgcName
public String getOgcName()
-
getEpsgCode
public int getEpsgCode()
-
getEpsgName
public String getEpsgName()
-
getCfName
public String getCfName()
-
toString
public String toString()
- Overrides:
toString
in classEnum<EPSG_OGC_CF_Helper.ProjectionStandardsInfo>
-
getProjectionByOgcName
public static EPSG_OGC_CF_Helper.ProjectionStandardsInfo getProjectionByOgcName(String ogcName)
-
getProjectionByEpsgCode
public static EPSG_OGC_CF_Helper.ProjectionStandardsInfo getProjectionByEpsgCode(int epsgCode)
-
getProjectionByEpsgName
public static EPSG_OGC_CF_Helper.ProjectionStandardsInfo getProjectionByEpsgName(String epsgName)
-
getProjectionByCfName
public static EPSG_OGC_CF_Helper.ProjectionStandardsInfo getProjectionByCfName(String cfName)
-
-