Uses of Class
ncsa.hdf.object.FileFormat

Packages that use FileFormat
ncsa.hdf.object   
ncsa.hdf.object.fits   
ncsa.hdf.object.h4   
ncsa.hdf.object.h5   
ncsa.hdf.object.nc2   
ncsa.hdf.view   
org.dawb.hdf5.nexus   
 

Uses of FileFormat in ncsa.hdf.object
 

Methods in ncsa.hdf.object that return FileFormat
 FileFormat FileFormat.create(java.lang.String fileName)
          Deprecated. As of 2.4, replaced by createFile(String, int)

The replacement method has an additional parameter that controls the behavior if the file already exists. Use FileFormat.FILE_CREATE_DELETE as the second argument in the replacement method to mimic the behavior originally provided by this method.

 FileFormat FileFormat.createFile(java.lang.String filename, int createFlag)
          Creates a file with the specified name and returns a new FileFormat implementation instance associated with the file.
abstract  FileFormat FileFormat.createInstance(java.lang.String filename, int access)
          Creates a FileFormat implementation instance with specified filename and access.
 FileFormat HObject.getFileFormat()
          Returns the file that contains the object.
static FileFormat FileFormat.getFileFormat(java.lang.String key)
          Returns the FileFormat with specified key from the list of supported formats.
static FileFormat[] FileFormat.getFileFormats()
          Returns an array of supported FileFormat instances.
static FileFormat FileFormat.getInstance(java.lang.String filename)
          Creates a FileFormat instance for the specified file.
 FileFormat FileFormat.open(java.lang.String pathname, int access)
          Deprecated. As of 2.4, replaced by createInstance(String, int) The replacement method has identical functionality and a more descriptive name. Since open is used elsewhere to perform a different function this method has been deprecated.
static FileFormat FileFormat.removeFileFormat(java.lang.String key)
          Removes a FileFormat from the list of supported formats.
 

Methods in ncsa.hdf.object with parameters of type FileFormat
static void FileFormat.addFileFormat(java.lang.String key, FileFormat fileformat)
          Adds a FileFormat with specified key to the list of supported formats.
static HObject FileFormat.findObject(FileFormat file, long[] oid)
          Finds an object by its object ID
static HObject FileFormat.findObject(FileFormat file, java.lang.String path)
          Finds an object by the full path of the object (path+name)
abstract  boolean FileFormat.isThisType(FileFormat fileFormat)
          Checks if the class implements the specified FileFormat.
 

Constructors in ncsa.hdf.object with parameters of type FileFormat
CompoundDS(FileFormat theFile, java.lang.String name, java.lang.String path)
          Constructs a CompoundDS object with given file, dataset name and path.
CompoundDS(FileFormat theFile, java.lang.String name, java.lang.String path, long[] oid)
          Deprecated. Not for public use in the future.
Using CompoundDS.CompoundDS(FileFormat, String, String)
Dataset(FileFormat theFile, java.lang.String name, java.lang.String path)
          Constructs a Dataset object with a given file, name and path.
Dataset(FileFormat theFile, java.lang.String name, java.lang.String path, long[] oid)
          Deprecated. Not for public use in the future.
Using Dataset.Dataset(FileFormat, String, String)
Datatype(FileFormat theFile, java.lang.String name, java.lang.String path)
          Constructs a named datatype with a given file, name and path.
Datatype(FileFormat theFile, java.lang.String name, java.lang.String path, long[] oid)
          Deprecated. Not for public use in the future.
Using Datatype.Datatype(FileFormat, String, String)
Group(FileFormat theFile, java.lang.String name, java.lang.String path, Group parent)
          Constructs an instance of the group with specific name, path and parent group.
Group(FileFormat theFile, java.lang.String name, java.lang.String path, Group parent, long[] oid)
          Deprecated. Not for public use in the future.
Using Group.Group(FileFormat, String, String, Group)
HObject(FileFormat theFile, java.lang.String theName, java.lang.String thePath)
          Constructs an instance of a data object with specific name and path.
HObject(FileFormat theFile, java.lang.String theName, java.lang.String thePath, long[] oid)
          Deprecated. Not for public use in the future.
Using HObject.HObject(FileFormat, String, String)
ScalarDS(FileFormat theFile, java.lang.String theName, java.lang.String thePath)
          Constructs an instance of a ScalarDS with specific name and path.
ScalarDS(FileFormat theFile, java.lang.String theName, java.lang.String thePath, long[] oid)
          Deprecated. Not for public use in the future.
Using ScalarDS.ScalarDS(FileFormat, String, String)
 

Uses of FileFormat in ncsa.hdf.object.fits
 

Subclasses of FileFormat in ncsa.hdf.object.fits
 class FitsFile
          This class provides file level APIs.
 

Methods in ncsa.hdf.object.fits that return FileFormat
 FileFormat FitsFile.createInstance(java.lang.String filename, int access)
          Creates a FitsFile instance with specified file name and READ access.
 

Methods in ncsa.hdf.object.fits with parameters of type FileFormat
 boolean FitsFile.isThisType(FileFormat fileformat)
          Checks if the given file format is a Fits file.
 

Constructors in ncsa.hdf.object.fits with parameters of type FileFormat
FitsDataset(FileFormat fileFormat, nom.tam.fits.BasicHDU hdu, java.lang.String dName, long[] oid)
          Constructs an FitsDataset object with specific netcdf variable.
FitsGroup(FileFormat fileFormat, java.lang.String name, java.lang.String path, Group parent, long[] theID)
          Constructs an HDF5 group with specific name, path, and parent.
 

Uses of FileFormat in ncsa.hdf.object.h4
 

Subclasses of FileFormat in ncsa.hdf.object.h4
 class H4File
          This class provides file level APIs.
 

Methods in ncsa.hdf.object.h4 that return FileFormat
 FileFormat H4File.createFile(java.lang.String filename, int createFlag)
          Creates an HDF4 file with the specified name and returns a new H4File instance associated with the file.
 FileFormat H4File.createInstance(java.lang.String filename, int access)
          Creates an H4File instance with specified file name and access.
 

Methods in ncsa.hdf.object.h4 with parameters of type FileFormat
 boolean H4File.isThisType(FileFormat fileformat)
          Checks if the given file format is an HDF4 file.
 

Constructors in ncsa.hdf.object.h4 with parameters of type FileFormat
H4GRImage(FileFormat theFile, java.lang.String name, java.lang.String path)
           
H4GRImage(FileFormat theFile, java.lang.String name, java.lang.String path, long[] oid)
          Creates a H4GRImage object with specific name, path, and object ID.
H4Group(FileFormat theFile, java.lang.String name, java.lang.String path, Group parent)
           
H4Group(FileFormat theFile, java.lang.String name, java.lang.String path, Group parent, long[] oid)
          Creates a group object with specific name, path, and parent.
H4SDS(FileFormat theFile, java.lang.String name, java.lang.String path)
           
H4SDS(FileFormat theFile, java.lang.String name, java.lang.String path, long[] oid)
          Creates an H4SDS object with specific name and path.
H4Vdata(FileFormat theFile, java.lang.String name, java.lang.String path)
           
H4Vdata(FileFormat theFile, java.lang.String name, java.lang.String path, long[] oid)
          Creates an H4Vdata object with specific name and path.
 

Uses of FileFormat in ncsa.hdf.object.h5
 

Subclasses of FileFormat in ncsa.hdf.object.h5
 class H5File
          H5File is an implementation of the FileFormat class for HDF5 files.
 

Methods in ncsa.hdf.object.h5 that return FileFormat
 FileFormat H5File.createFile(java.lang.String filename, int createFlag)
          Creates an HDF5 file with the specified name and returns a new H5File instance associated with the file.
 FileFormat H5File.createInstance(java.lang.String filename, int access)
          Creates an H5File instance with specified file name and access.
 

Methods in ncsa.hdf.object.h5 with parameters of type FileFormat
 boolean H5File.isThisType(FileFormat theFile)
          Checks if the specified FileFormat instance has the HDF5 format.
 

Constructors in ncsa.hdf.object.h5 with parameters of type FileFormat
H5CompoundDS(FileFormat theFile, java.lang.String name, java.lang.String path)
          Constructs an HDF5 compound dataset with given file, dataset name and path.
H5CompoundDS(FileFormat theFile, java.lang.String name, java.lang.String path, long[] oid)
          Deprecated. Not for public use in the future.
Using H5CompoundDS.H5CompoundDS(FileFormat, String, String)
H5Datatype(FileFormat theFile, java.lang.String name, java.lang.String path)
          Constructs an named HDF5 data type object for a given file, dataset name and group path.
H5Datatype(FileFormat theFile, java.lang.String name, java.lang.String path, long[] oid)
          Deprecated. Not for public use in the future.
Using H5Datatype.H5Datatype(FileFormat, String, String)
H5Group(FileFormat theFile, java.lang.String name, java.lang.String path, Group parent)
          Constructs an HDF5 group with specific name, path, and parent.
H5Group(FileFormat theFile, java.lang.String name, java.lang.String path, Group parent, long[] oid)
          Deprecated. Not for public use in the future.
Using H5Group.H5Group(FileFormat, String, String, Group)
H5Link(FileFormat theFile, java.lang.String name, java.lang.String path)
          Constructs an HDF5 link with specific name, path, and parent.
H5Link(FileFormat theFile, java.lang.String theName, java.lang.String thePath, long[] oid)
           
H5ScalarDS(FileFormat theFile, java.lang.String theName, java.lang.String thePath)
          Constructs an instance of a H5ScalarDS object with specific name and path.
H5ScalarDS(FileFormat theFile, java.lang.String theName, java.lang.String thePath, long[] oid)
          Deprecated. Not for public use in the future.
Using H5ScalarDS.H5ScalarDS(FileFormat, String, String)
 

Uses of FileFormat in ncsa.hdf.object.nc2
 

Subclasses of FileFormat in ncsa.hdf.object.nc2
 class NC2File
          This class provides file level APIs.
 

Methods in ncsa.hdf.object.nc2 that return FileFormat
 FileFormat NC2File.createInstance(java.lang.String filename, int access)
          Creates an NC2File instance with specified file name and READ access.
 

Methods in ncsa.hdf.object.nc2 with parameters of type FileFormat
 boolean NC2File.isThisType(FileFormat fileformat)
          Checks if the given file format is a NetCDF file.
 

Constructors in ncsa.hdf.object.nc2 with parameters of type FileFormat
NC2Dataset(FileFormat fileFormat, ucar.nc2.Variable ncDataset, long[] oid)
          Constructs an NC2Dataset object with specific netcdf variable.
NC2Group(FileFormat fileFormat, java.lang.String name, java.lang.String path, Group parent, long[] theID)
          Constructs an HDF5 group with specific name, path, and parent.
 

Uses of FileFormat in ncsa.hdf.view
 

Methods in ncsa.hdf.view that return FileFormat
 FileFormat TreeView.getSelectedFile()
          Gets the selected the file.
 FileFormat DefaultTreeView.getSelectedFile()
          Gets the selected the file.
 FileFormat TreeView.openFile(java.lang.String filename, int accessID)
          Opens a file and retrieves the file structure of the file.
 FileFormat DefaultTreeView.openFile(java.lang.String filename, int accessID)
          Opens a file and retrieves the file structure of the file.
 

Methods in ncsa.hdf.view that return types with arguments of type FileFormat
 java.util.List<FileFormat> TreeView.getCurrentFiles()
          Returns the list of current open files..
 java.util.List<FileFormat> DefaultTreeView.getCurrentFiles()
          Returns the list of current open files..
 

Methods in ncsa.hdf.view with parameters of type FileFormat
 void TreeView.closeFile(FileFormat file)
          close a file
 void DefaultTreeView.closeFile(FileFormat file)
          close a file
 void TreeView.saveFile(FileFormat file)
          save a file
 void DefaultTreeView.saveFile(FileFormat file)
          save a file
 

Uses of FileFormat in org.dawb.hdf5.nexus
 

Methods in org.dawb.hdf5.nexus with parameters of type FileFormat
static void NexusUtils.setNexusAttribute(FileFormat file, HObject entry, java.lang.String entryKey)
          Sets the nexus attribute so that if something is looking for them, then they are there.