Uses of Class
ncsa.hdf.object.Datatype

Packages that use Datatype
ncsa.hdf.object   
ncsa.hdf.object.fits   
ncsa.hdf.object.h4   
ncsa.hdf.object.h5   
ncsa.hdf.object.nc2   
org.dawb.gda.extensions.loaders   
org.dawb.hdf5   
 

Uses of Datatype in ncsa.hdf.object
 

Methods in ncsa.hdf.object that return Datatype
abstract  Datatype FileFormat.createDatatype(int tclass, int tsize, int torder, int tsign)
          Creates a new datatype in memory.
abstract  Datatype FileFormat.createDatatype(int tclass, int tsize, int torder, int tsign, java.lang.String name)
          Creates a named datatype in a file.
 Datatype Datatype.getBasetype()
          Returns the datatype of array element for ARRAY datatype.
abstract  Datatype Dataset.getDatatype()
          Returns the datatype object of the dataset.
 Datatype[] CompoundDS.getMemberTypes()
          Returns an array of datatype objects of compound members.
 Datatype[] CompoundDS.getSelectedMemberTypes()
          Returns an array of datatype objects of selected compound members.
 Datatype Attribute.getType()
          Returns the datatype of the attribute.
 

Methods in ncsa.hdf.object with parameters of type Datatype
 Dataset FileFormat.createCompoundDS(java.lang.String name, Group pgroup, long[] dims, long[] maxdims, long[] chunks, int gzip, java.lang.String[] memberNames, Datatype[] memberDatatypes, int[] memberSizes, java.lang.Object data)
          Creates a new compound dataset in a file with/without chunking and compression.
 Dataset FileFormat.createCompoundDS(java.lang.String name, Group pgroup, long[] dims, java.lang.String[] memberNames, Datatype[] memberDatatypes, int[] memberSizes, java.lang.Object data)
          Deprecated. As of 2.4, replaced by FileFormat.createCompoundDS(String, Group, long[], long[], long[], int, String[], Datatype[], int[], Object)

The replacement method has additional parameters: maxdims, chunks, and gzip. To mimic the behavior originally provided by this method, call the replacement method with the following parameter list: ( name, pgroup, dims, null, null, -1, memberNames, memberDatatypes, memberSizes, data );

abstract  Dataset FileFormat.createImage(java.lang.String name, Group pgroup, Datatype type, long[] dims, long[] maxdims, long[] chunks, int gzip, int ncomp, int interlace, java.lang.Object data)
          Creates a new image in a file.
abstract  Dataset FileFormat.createScalarDS(java.lang.String name, Group pgroup, Datatype type, long[] dims, long[] maxdims, long[] chunks, int gzip, java.lang.Object data)
          Creates a new dataset in a file with/without chunking/compression.
 

Constructors in ncsa.hdf.object with parameters of type Datatype
Attribute(java.lang.String attrName, Datatype attrType, long[] attrDims)
          Create an attribute with specified name, data type and dimension sizes.
Attribute(java.lang.String attrName, Datatype attrType, long[] attrDims, java.lang.Object attrValue)
          Create an attribute with specific name and value.
 

Uses of Datatype in ncsa.hdf.object.fits
 

Subclasses of Datatype in ncsa.hdf.object.fits
 class FitsDatatype
          Datatype encapsulates information of a datatype.
 

Methods in ncsa.hdf.object.fits that return Datatype
 Datatype FitsFile.createDatatype(int tclass, int tsize, int torder, int tsign)
           
 Datatype FitsFile.createDatatype(int tclass, int tsize, int torder, int tsign, java.lang.String name)
           
 Datatype FitsDataset.getDatatype()
           
 

Methods in ncsa.hdf.object.fits with parameters of type Datatype
static FitsDataset FitsDataset.create(java.lang.String name, Group pgroup, Datatype type, long[] dims, long[] maxdims, long[] chunks, int gzip, java.lang.Object data)
          Creates a new dataset.
 Dataset FitsFile.createImage(java.lang.String name, Group pgroup, Datatype type, long[] dims, long[] maxdims, long[] chunks, int gzip, int ncomp, int intelace, java.lang.Object data)
           
 Dataset FitsFile.createScalarDS(java.lang.String name, Group pgroup, Datatype type, long[] dims, long[] maxdims, long[] chunks, int gzip, java.lang.Object data)
           
 

Uses of Datatype in ncsa.hdf.object.h4
 

Subclasses of Datatype in ncsa.hdf.object.h4
 class H4Datatype
          This class defines HDF4 data type characteristics and APIs for a data type.
 

Methods in ncsa.hdf.object.h4 that return Datatype
 Datatype H4File.createDatatype(int tclass, int tsize, int torder, int tsign)
           
 Datatype H4File.createDatatype(int tclass, int tsize, int torder, int tsign, java.lang.String name)
           
 Datatype H4GRImage.getDatatype()
           
 Datatype H4Vdata.getDatatype()
           
 Datatype H4SDS.getDatatype()
           
 

Methods in ncsa.hdf.object.h4 with parameters of type Datatype
static H4GRImage H4GRImage.create(java.lang.String name, Group pgroup, Datatype type, long[] dims, long[] maxdims, long[] chunks, int gzip, int ncomp, int interlace, java.lang.Object data)
          Creates a new image.
static H4SDS H4SDS.create(java.lang.String name, Group pgroup, Datatype type, long[] dims, long[] maxdims, long[] chunks, int gzip, java.lang.Object data)
          Creates a new dataset.
 Dataset H4File.createImage(java.lang.String name, Group pgroup, Datatype type, long[] dims, long[] maxdims, long[] chunks, int gzip, int ncomp, int interlace, java.lang.Object data)
           
 Dataset H4File.createScalarDS(java.lang.String name, Group pgroup, Datatype type, long[] dims, long[] maxdims, long[] chunks, int gzip, java.lang.Object data)
           
 

Uses of Datatype in ncsa.hdf.object.h5
 

Subclasses of Datatype in ncsa.hdf.object.h5
 class H5Datatype
          This class defines HDF5 data type characteristics and APIs for a data type.
 

Methods in ncsa.hdf.object.h5 that return Datatype
 Datatype H5File.createDatatype(int tclass, int tsize, int torder, int tsign)
          Methods related to Datatypes and HObjects in HDF5 Files.
 Datatype H5File.createDatatype(int tclass, int tsize, int torder, int tsign, java.lang.String name)
           
 Datatype H5CompoundDS.getDatatype()
           
 Datatype H5ScalarDS.getDatatype()
           
 

Methods in ncsa.hdf.object.h5 with parameters of type Datatype
static H5ScalarDS H5ScalarDS.create(java.lang.String name, Group pgroup, Datatype type, long[] dims, long[] maxdims, long[] chunks, int gzip, java.lang.Object data)
          Creates a new dataset in a file.
static Dataset H5CompoundDS.create(java.lang.String name, Group pgroup, long[] dims, long[] maxdims, long[] chunks, int gzip, java.lang.String[] memberNames, Datatype[] memberDatatypes, int[] memberRanks, long[][] memberDims, java.lang.Object data)
          Creates a simple compound dataset in a file with/without chunking and compression
static Dataset H5CompoundDS.create(java.lang.String name, Group pgroup, long[] dims, java.lang.String[] memberNames, Datatype[] memberDatatypes, int[] memberRanks, long[][] memberDims, java.lang.Object data)
          Deprecated. Not for public use in the future.
Using #create(String, Group, long[], long[], long[], int, String[], Datatype[], int[], int[][], Object)
static Dataset H5CompoundDS.create(java.lang.String name, Group pgroup, long[] dims, java.lang.String[] memberNames, Datatype[] memberDatatypes, int[] memberSizes, java.lang.Object data)
          Deprecated. Not for public use in the future.
Using #create(String, Group, long[], long[], long[], int, String[], Datatype[], int[], int[][], Object)
 Dataset H5File.createCompoundDS(java.lang.String name, Group pgroup, long[] dims, long[] maxdims, long[] chunks, int gzip, java.lang.String[] memberNames, Datatype[] memberDatatypes, int[] memberSizes, java.lang.Object data)
           
 Dataset H5File.createImage(java.lang.String name, Group pgroup, Datatype type, long[] dims, long[] maxdims, long[] chunks, int gzip, int ncomp, int interlace, java.lang.Object data)
           
 Dataset H5File.createScalarDS(java.lang.String name, Group pgroup, Datatype type, long[] dims, long[] maxdims, long[] chunks, int gzip, java.lang.Object data)
           
 

Uses of Datatype in ncsa.hdf.object.nc2
 

Subclasses of Datatype in ncsa.hdf.object.nc2
 class NC2Datatype
          Datatype encapsulates information of a datatype.
 

Methods in ncsa.hdf.object.nc2 that return Datatype
 Datatype NC2File.createDatatype(int tclass, int tsize, int torder, int tsign)
           
 Datatype NC2File.createDatatype(int tclass, int tsize, int torder, int tsign, java.lang.String name)
           
 Datatype NC2Dataset.getDatatype()
           
 

Methods in ncsa.hdf.object.nc2 with parameters of type Datatype
static NC2Dataset NC2Dataset.create(java.lang.String name, Group pgroup, Datatype type, long[] dims, long[] maxdims, long[] chunks, int gzip, java.lang.Object data)
          Creates a new dataset.
 Dataset NC2File.createImage(java.lang.String name, Group pgroup, Datatype type, long[] dims, long[] maxdims, long[] chunks, int gzip, int ncomp, int intelace, java.lang.Object data)
           
 Dataset NC2File.createScalarDS(java.lang.String name, Group pgroup, Datatype type, long[] dims, long[] maxdims, long[] chunks, int gzip, java.lang.Object data)
           
 

Uses of Datatype in org.dawb.gda.extensions.loaders
 

Methods in org.dawb.gda.extensions.loaders that return Datatype
static Datatype H5Utils.getDatatype(uk.ac.diamond.scisoft.analysis.dataset.AbstractDataset a)
          Determines the HDF5 Datatype for an abstract dataset.
 

Methods in org.dawb.gda.extensions.loaders with parameters of type Datatype
static int H5Utils.getDataType(Datatype datatype)
           
 

Uses of Datatype in org.dawb.hdf5
 

Methods in org.dawb.hdf5 with parameters of type Datatype
 Dataset IHierarchicalDataFile.createDataset(java.lang.String name, Datatype dtype, long[] shape, java.lang.Object buffer, Group data)
          Creates and returns a new dataset with the given name and parent If it already exists then an integer will be appended to the name and it will still be written.