Package ucar.nc2.grib.grib2.table
Enum WmoCodeFlagTables.TableType
- java.lang.Object
-
- java.lang.Enum<WmoCodeFlagTables.TableType>
-
- ucar.nc2.grib.grib2.table.WmoCodeFlagTables.TableType
-
- All Implemented Interfaces:
Serializable,Comparable<WmoCodeFlagTables.TableType>
- Enclosing class:
- WmoCodeFlagTables
public static enum WmoCodeFlagTables.TableType extends Enum<WmoCodeFlagTables.TableType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WmoCodeFlagTables.TableTypevalueOf(String name)Returns the enum constant of this type with the specified name.static WmoCodeFlagTables.TableType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
param
public static final WmoCodeFlagTables.TableType param
-
code
public static final WmoCodeFlagTables.TableType code
-
flag
public static final WmoCodeFlagTables.TableType flag
-
cat
public static final WmoCodeFlagTables.TableType cat
-
-
Method Detail
-
values
public static WmoCodeFlagTables.TableType[] 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 (WmoCodeFlagTables.TableType c : WmoCodeFlagTables.TableType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WmoCodeFlagTables.TableType 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
-
-