Package org.meteoinfo.projection
Enum ProjectionNames
- java.lang.Object
-
- java.lang.Enum<ProjectionNames>
-
- org.meteoinfo.projection.ProjectionNames
-
public enum ProjectionNames extends java.lang.Enum<ProjectionNames>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ProjectionNamesvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ProjectionNames[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LongLat
public static final ProjectionNames LongLat
-
Lambert_Conformal_Conic
public static final ProjectionNames Lambert_Conformal_Conic
-
Lambert_Azimuthal_Equal_Area
public static final ProjectionNames Lambert_Azimuthal_Equal_Area
-
Albers_Equal_Area
public static final ProjectionNames Albers_Equal_Area
-
North_Polar_Stereographic_Azimuthal
public static final ProjectionNames North_Polar_Stereographic_Azimuthal
-
South_Polar_Stereographic_Azimuthal
public static final ProjectionNames South_Polar_Stereographic_Azimuthal
-
Mercator
public static final ProjectionNames Mercator
-
Robinson
public static final ProjectionNames Robinson
-
Molleweide
public static final ProjectionNames Molleweide
-
Orthographic_Azimuthal
public static final ProjectionNames Orthographic_Azimuthal
-
Geostationary_Satellite
public static final ProjectionNames Geostationary_Satellite
-
Oblique_Stereographic_Alternative
public static final ProjectionNames Oblique_Stereographic_Alternative
-
Transverse_Mercator
public static final ProjectionNames Transverse_Mercator
-
Sinusoidal
public static final ProjectionNames Sinusoidal
-
Cylindrical_Equal_Area
public static final ProjectionNames Cylindrical_Equal_Area
-
Hammer_Eckert
public static final ProjectionNames Hammer_Eckert
-
Undefine
public static final ProjectionNames Undefine
-
-
Method Detail
-
values
public static ProjectionNames[] 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 (ProjectionNames c : ProjectionNames.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProjectionNames valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-