Package ucar.nc2.grib.grib2
Enum Grib2Utils.LatLon2DCoord
- java.lang.Object
-
- java.lang.Enum<Grib2Utils.LatLon2DCoord>
-
- ucar.nc2.grib.grib2.Grib2Utils.LatLon2DCoord
-
- All Implemented Interfaces:
Serializable
,Comparable<Grib2Utils.LatLon2DCoord>
- Enclosing class:
- Grib2Utils
public static enum Grib2Utils.LatLon2DCoord extends Enum<Grib2Utils.LatLon2DCoord>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description P_Latitude
P_Longitude
U_Latitude
U_Longitude
V_Latitude
V_Longitude
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description AxisType
getAxisType()
static Grib2Utils.LatLon2DCoord
valueOf(String name)
Returns the enum constant of this type with the specified name.static Grib2Utils.LatLon2DCoord[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
U_Latitude
public static final Grib2Utils.LatLon2DCoord U_Latitude
-
U_Longitude
public static final Grib2Utils.LatLon2DCoord U_Longitude
-
V_Latitude
public static final Grib2Utils.LatLon2DCoord V_Latitude
-
V_Longitude
public static final Grib2Utils.LatLon2DCoord V_Longitude
-
P_Latitude
public static final Grib2Utils.LatLon2DCoord P_Latitude
-
P_Longitude
public static final Grib2Utils.LatLon2DCoord P_Longitude
-
-
Method Detail
-
values
public static Grib2Utils.LatLon2DCoord[] 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 (Grib2Utils.LatLon2DCoord c : Grib2Utils.LatLon2DCoord.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Grib2Utils.LatLon2DCoord 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
-
getAxisType
public AxisType getAxisType()
-
-