Package ucar.nc2.grib.grib2.table
Interface Grib2ParamTableInterface
-
- All Known Implementing Classes:
EccodesParamTable
,WmoParamTable
public interface Grib2ParamTableInterface
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getName()
GribTables.Parameter
getParameter(int number)
Find the Parameter in this table with the given number.com.google.common.collect.ImmutableList<GribTables.Parameter>
getParameters()
String
getShortName()
-
-
-
Method Detail
-
getName
String getName()
-
getShortName
String getShortName()
-
getParameters
com.google.common.collect.ImmutableList<GribTables.Parameter> getParameters()
-
getParameter
@Nullable GribTables.Parameter getParameter(int number)
Find the Parameter in this table with the given number.- Parameters:
number
- unsigned byte.
-
-