Package ucar.nc2.grib.coord
Interface Coordinate
-
- All Known Implementing Classes:
CoordinateEns
,CoordinateRuntime
,CoordinateTime
,CoordinateTime2D
,CoordinateTimeAbstract
,CoordinateTimeIntv
,CoordinateVert
public interface Coordinate
Abstract coordinate- Since:
- 11/24/13
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
Coordinate.Type
Coordinate types
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Counters
calcDistributions()
int
estMemorySize()
int
getCode()
int
getIndex(Object val)
String
getName()
int
getNCoords()
int
getSize()
Coordinate.Type
getType()
String
getUnit()
Object
getValue(int idx)
List<?>
getValues()
void
showCoords(Formatter info)
void
showInfo(Formatter info, Indent indent)
-
-
-
Method Detail
-
getValues
List<?> getValues()
-
getValue
Object getValue(int idx)
-
getIndex
int getIndex(Object val)
-
getSize
int getSize()
-
getCode
int getCode()
-
getType
Coordinate.Type getType()
-
getName
String getName()
-
getUnit
String getUnit()
-
getNCoords
int getNCoords()
-
showCoords
void showCoords(Formatter info)
-
calcDistributions
Counters calcDistributions()
-
estMemorySize
int estMemorySize()
-
-