Package ucar.nc2.iosp.bufr.tables
Enum BufrTables.Format
- java.lang.Object
-
- java.lang.Enum<BufrTables.Format>
-
- ucar.nc2.iosp.bufr.tables.BufrTables.Format
-
- All Implemented Interfaces:
Serializable
,Comparable<BufrTables.Format>
- Enclosing class:
- BufrTables
public static enum BufrTables.Format extends Enum<BufrTables.Format>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BufrTables.Format
valueOf(String name)
Returns the enum constant of this type with the specified name.static BufrTables.Format[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ecmwf
public static final BufrTables.Format ecmwf
-
mel_bufr
public static final BufrTables.Format mel_bufr
-
mel_tabs
public static final BufrTables.Format mel_tabs
-
ncep
public static final BufrTables.Format ncep
-
ncep_nm
public static final BufrTables.Format ncep_nm
-
opera
public static final BufrTables.Format opera
-
ukmet
public static final BufrTables.Format ukmet
-
wmo_csv
public static final BufrTables.Format wmo_csv
-
wmo_xml
public static final BufrTables.Format wmo_xml
-
cypher
public static final BufrTables.Format cypher
-
embed
public static final BufrTables.Format embed
-
-
Method Detail
-
values
public static BufrTables.Format[] 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 (BufrTables.Format c : BufrTables.Format.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BufrTables.Format 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
-
-