Package ucar.nc2.grib.grib2.table
Interface Grib2CodeTableInterface
-
- All Known Implementing Classes:
EccodesCodeTable
,WmoCodeTable
public interface Grib2CodeTableInterface
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
Grib2CodeTableInterface.Entry
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.common.collect.ImmutableList<Grib2CodeTableInterface.Entry>
getEntries()
Grib2CodeTableInterface.Entry
getEntry(int code)
Find the Entry in this table with the given code.String
getName()
String
getShortName()
-
-
-
Method Detail
-
getName
String getName()
-
getShortName
String getShortName()
-
getEntries
com.google.common.collect.ImmutableList<Grib2CodeTableInterface.Entry> getEntries()
-
getEntry
Grib2CodeTableInterface.Entry getEntry(int code)
Find the Entry in this table with the given code.- Parameters:
code
- unsigned short.
-
-