Package ucar.nc2.grib.grib2.table
Enum Grib2TablesId.Type
- java.lang.Object
-
- java.lang.Enum<Grib2TablesId.Type>
-
- ucar.nc2.grib.grib2.table.Grib2TablesId.Type
-
- All Implemented Interfaces:
Serializable,Comparable<Grib2TablesId.Type>
- Enclosing class:
- Grib2TablesId
public static enum Grib2TablesId.Type extends Enum<Grib2TablesId.Type>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Grib2TablesId.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static Grib2TablesId.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
wmo
public static final Grib2TablesId.Type wmo
-
cfsr
public static final Grib2TablesId.Type cfsr
-
gempak
public static final Grib2TablesId.Type gempak
-
gsd
public static final Grib2TablesId.Type gsd
-
kma
public static final Grib2TablesId.Type kma
-
ncep
public static final Grib2TablesId.Type ncep
-
ndfd
public static final Grib2TablesId.Type ndfd
-
mrms
public static final Grib2TablesId.Type mrms
-
nwsDev
public static final Grib2TablesId.Type nwsDev
-
eccodes
public static final Grib2TablesId.Type eccodes
-
-
Method Detail
-
values
public static Grib2TablesId.Type[] 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 (Grib2TablesId.Type c : Grib2TablesId.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Grib2TablesId.Type 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
-
-