Uses of Class
ucar.nc2.constants.AxisType

Packages that use AxisType
ucar.nc2.constants Enumerated constants used throughout the library. 
ucar.nc2.dataset An extension to the netCDF API which provides support for coordinate systems, scale/offset/missing data, and NcML. 
 

Uses of AxisType in ucar.nc2.constants
 

Methods in ucar.nc2.constants that return AxisType
static AxisType AxisType.getType(java.lang.String name)
          Find the AxisType that matches this name.
static AxisType AxisType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AxisType[] AxisType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Uses of AxisType in ucar.nc2.dataset
 

Fields in ucar.nc2.dataset declared as AxisType
 AxisType CoordSysBuilder.VarProcess.axisType
           
 

Methods in ucar.nc2.dataset that return AxisType
 AxisType CoordinateAxis.getAxisType()
          Get type of axis
 

Methods in ucar.nc2.dataset with parameters of type AxisType
 boolean CoordinateSystem.containsAxisType(AxisType wantAxisType)
          Do we have an axes of the given type?
 CoordinateAxis CoordinateSystem.findAxis(AxisType type)
          Find the CoordinateAxis that has the given AxisType.
 CoordinateAxis NetcdfDataset.findCoordinateAxis(AxisType type)
          Retrieve the CoordinateAxis with the specified Axis Type.
 void CoordinateAxis.setAxisType(AxisType axisType)
          Set type of axis, or null if none.
 

Method parameters in ucar.nc2.dataset with type arguments of type AxisType
 boolean CoordinateSystem.containsAxisTypes(java.util.List<AxisType> wantAxes)
          Do we have all the axes types in the list?