Uses of Class
ucar.ma2.DataType

Packages that use DataType
ucar.ma2 Multidimensional arrays of primitives and objects with data stored in memory. 
ucar.nc2 The public API to the Java-NetCDF library. 
ucar.nc2.dataset An extension to the netCDF API which provides support for coordinate systems, scale/offset/missing data, and NcML. 
ucar.nc2.dt Scientific data types package. 
 

Uses of DataType in ucar.ma2
 

Methods in ucar.ma2 that return DataType
 DataType StructureMembers.Member.getDataType()
          Get the DataType.
static DataType DataType.getType(java.lang.Class c)
          Find the DataType that matches this class.
static DataType DataType.getType(java.lang.String name)
          Find the DataType that matches this name.
static DataType DataType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DataType[] DataType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in ucar.ma2 with parameters of type DataType
 StructureMembers.Member StructureMembers.addMember(java.lang.String name, java.lang.String desc, java.lang.String units, DataType dtype, int[] shape)
           
static Array MAMath.convert(Array org, DataType wantType)
          Convert original array to desired type
static Array MAMath.convert2packed(Array unpacked, double missingValue, int nbits, boolean isUnsigned, DataType packedType)
           
static void MAMath.copy(DataType dataType, IndexIterator from, IndexIterator to)
          Copy using iterators.
static Array Array.factory(DataType dataType, int[] shape)
          Generate new Array with given type and shape and zeroed storage.
static Array Array.factory(DataType dtype, int[] shape, java.nio.ByteBuffer bb)
          Create an Array from a ByteBuffer
static Array Array.factory(DataType dataType, int[] shape, java.lang.Object storage)
          /** Generate new Array with given type, shape, storage.
static Array Array.makeArray(DataType dtype, int npts, double start, double incr)
          Make a 1D array from a start and inccr.
static Array Array.makeArray(DataType dtype, java.util.List<java.lang.String> stringValues)
          Make an 1D array from a list of strings.
static Array Array.makeArray(DataType dtype, java.lang.String[] stringValues)
          Make an 1D array from an array of strings.
 void StructureMembers.Member.setVariableInfo(java.lang.String vname, java.lang.String desc, java.lang.String unitString, DataType dtype)
           
 

Constructors in ucar.ma2 with parameters of type DataType
StructureMembers.Member(java.lang.String name, java.lang.String desc, java.lang.String units, DataType dtype, int[] shape)
           
 

Uses of DataType in ucar.nc2
 

Methods in ucar.nc2 that return DataType
 DataType Attribute.getDataType()
          Get the data type of the Attribute value.
 DataType Variable.getDataType()
          Get the data type of the Variable.
 DataType VariableIF.getDataType()
           
 DataType VariableSimpleAdapter.getDataType()
           
 DataType VariableSimpleIF.getDataType()
          Variable's data type
 

Methods in ucar.nc2 with parameters of type DataType
 Variable NetcdfFile.addVariable(Group g, java.lang.String shortName, DataType dtype, java.lang.String dims)
          Create a new Variable, and add to the given group.
 Variable NetcdfFileWriteable.addVariable(java.lang.String varName, DataType dataType, Dimension[] dims)
          Add a variable to the file.
 Variable NetcdfFileWriteable.addVariable(java.lang.String varName, DataType dataType, java.util.List<Dimension> dims)
          Add a variable to the file.
 Variable NetcdfFileWriteable.addVariable(java.lang.String varName, DataType dataType, java.lang.String dims)
          Add a variable to the file.
 void Variable.setDataType(DataType dataType)
          Set the data type
 

Constructors in ucar.nc2 with parameters of type DataType
Variable(NetcdfFile ncfile, Group group, Structure parent, java.lang.String shortName, DataType dtype, java.lang.String dims)
          Create a Variable.
 

Uses of DataType in ucar.nc2.dataset
 

Methods in ucar.nc2.dataset that return DataType
 DataType StructureDS.getOriginalDataType()
          When this wraps another Variable, get the original Variable's DataType.
 DataType VariableDS.getOriginalDataType()
          When this wraps another Variable, get the original Variable's DataType.
 

Methods in ucar.nc2.dataset with parameters of type DataType
static Array NetcdfDataset.makeArray(DataType dtype, java.util.List<java.lang.String> stringValues)
          Deprecated. use Array#makeArray directly
 

Constructors in ucar.nc2.dataset with parameters of type DataType
CoordinateAxis(NetcdfDataset ds, Group group, java.lang.String shortName, DataType dataType, java.lang.String dims, java.lang.String units, java.lang.String desc)
          Constructor when theres no underlying variable.
CoordinateAxis1D(NetcdfDataset ds, Group group, java.lang.String shortName, DataType dataType, java.lang.String dims, java.lang.String units, java.lang.String desc)
          Constructor when theres no underlying variable.
VariableDS(NetcdfDataset ds, Group group, Structure parentStructure, java.lang.String shortName, DataType dataType, java.lang.String dims, java.lang.String units, java.lang.String desc)
          Constructor when there's no underlying variable.
 

Uses of DataType in ucar.nc2.dt
 

Methods in ucar.nc2.dt that return DataType
 DataType GridDatatype.getDataType()
          get the data type
 DataType VariableSimpleSubclass.getDataType()