Uses of Class
hdf.object.FileFormat
Packages that use FileFormat
Package
Description
-
Uses of FileFormat in hdf.object
Fields in hdf.object declared as FileFormatModifier and TypeFieldDescriptionprotected FileFormat
HObject.fileFormat
The file which contains the objectMethods in hdf.object that return FileFormatModifier and TypeMethodDescriptionDeprecated.FileFormat.createFile(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(String filename, int access)
Creates a FileFormat implementation instance with specified filename and access.static FileFormat
FileFormat.getFileFormat(String key)
Returns the FileFormat with specified key from the list of supported formats.HObject.getFileFormat()
Returns the file that contains the object.static FileFormat[]
FileFormat.getFileFormats()
Returns an array of supported FileFormat instances.static FileFormat
FileFormat.getInstance(String filename)
Creates a FileFormat instance for the specified file.Deprecated.As of 2.4, replaced bycreateInstance(String, int)
The replacement method has identical functionality and a more descriptive name.static FileFormat
FileFormat.removeFileFormat(String key)
Removes a FileFormat from the list of supported formats.Methods in hdf.object with parameters of type FileFormatModifier and TypeMethodDescriptionstatic void
FileFormat.addFileFormat(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 IDstatic HObject
FileFormat.findObject(FileFormat file, 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 hdf.object with parameters of type FileFormatModifierConstructorDescriptionCompoundDS(FileFormat theFile, String dsName, String dsPath)
Constructs a CompoundDS object with the given file, dataset name and path.CompoundDS(FileFormat theFile, String dsName, String dsPath, long[] oid)
Deprecated.Not for public use in the future.
UsingCompoundDS(FileFormat, String, String)
Dataset(FileFormat theFile, String dsName, String dsPath)
Constructs a Dataset object with a given file, name and path.Dataset(FileFormat theFile, String dsName, String dsPath, long[] oid)
Deprecated.Not for public use in the future.Datatype(FileFormat theFile, int tclass, int tsize, int torder, int tsign, Datatype tbase, Datatype pbase)
Constructs a Datatype with specified class, size, byte order and sign.Datatype(FileFormat theFile, long tid)
Constructs a Datatype with a given native datatype identifier.Datatype(FileFormat theFile, long tid, Datatype pbase)
Constructs a Datatype with a given native datatype identifier.Datatype(FileFormat theFile, String typeName, String typePath)
Constructs a named datatype with a given file, name and path.Datatype(FileFormat theFile, String typeName, String typePath, long[] oid)
Deprecated.Not for public use in the future.
UsingDatatype(FileFormat, String, String)
Group(FileFormat theFile, String grpName, String grpPath, Group grpParent)
Constructs an instance of the group with specific name, path and parent group.Group(FileFormat theFile, String grpName, String grpPath, Group grpParent, long[] oid)
Deprecated.Not for public use in the future.
UsingGroup(FileFormat, String, String, Group)
HObject(FileFormat theFile, String theName, String thePath)
Constructs an instance of a data object with specific name and path.HObject(FileFormat theFile, String theName, String thePath, long[] oid)
Deprecated.ScalarDS(FileFormat theFile, String theName, String thePath)
Constructs an instance of a ScalarDS with specific name and path.ScalarDS(FileFormat theFile, String theName, String thePath, long[] oid)
Deprecated.Not for public use in the future.
UsingScalarDS(FileFormat, String, String)
-
Uses of FileFormat in hdf.object.fits
Subclasses of FileFormat in hdf.object.fitsMethods in hdf.object.fits that return FileFormatModifier and TypeMethodDescriptionFitsFile.createInstance(String filename, int access)
Creates a FitsFile instance with specified file name and READ access.Methods in hdf.object.fits with parameters of type FileFormatModifier and TypeMethodDescriptionboolean
FitsFile.isThisType(FileFormat fileformat)
Checks if the given file format is a Fits file.Constructors in hdf.object.fits with parameters of type FileFormatModifierConstructorDescriptionFitsDataset(FileFormat fileFormat, nom.tam.fits.BasicHDU hdu, String dName, long[] oid)
Constructs an FitsDataset object with specific netcdf variable.FitsGroup(FileFormat fileFormat, String name, String path, Group parent, long[] theID)
Constructs an HDF5 group with specific name, path, and parent. -
Uses of FileFormat in hdf.object.h4
Subclasses of FileFormat in hdf.object.h4Methods in hdf.object.h4 that return FileFormatModifier and TypeMethodDescriptionH4File.createFile(String filename, int createFlag)
Creates an HDF4 file with the specified name and returns a new H4File instance associated with the file.H4File.createInstance(String filename, int access)
Creates an H4File instance with specified file name and access.Methods in hdf.object.h4 with parameters of type FileFormatModifier and TypeMethodDescriptionboolean
H4File.isThisType(FileFormat fileformat)
Checks if the given file format is an HDF4 file.Constructors in hdf.object.h4 with parameters of type FileFormatModifierConstructorDescriptionH4GRImage(FileFormat theFile, String name, String path)
H4GRImage(FileFormat theFile, String name, String path, long[] oid)
Creates a H4GRImage object with specific name, path, and object ID.H4Group(FileFormat theFile, String name, String path, Group parent)
H4Group(FileFormat theFile, String name, String path, Group parent, long[] oid)
Creates a group object with specific name, path, and parent.H4SDS(FileFormat theFile, String name, String path)
H4SDS(FileFormat theFile, String name, String path, long[] oid)
Creates an H4SDS object with specific name and path.H4Vdata(FileFormat theFile, String name, String path)
H4Vdata(FileFormat theFile, String name, String path, long[] oid)
Creates an H4Vdata object with specific name and path. -
Uses of FileFormat in hdf.object.h5
Subclasses of FileFormat in hdf.object.h5Modifier and TypeClassDescriptionclass
H5File is an implementation of the FileFormat class for HDF5 files.Methods in hdf.object.h5 that return FileFormatModifier and TypeMethodDescriptionH5File.createFile(String filename, int createFlag)
Creates an HDF5 file with the specified name and returns a new H5File instance associated with the file.H5File.createInstance(String filename, int access)
Creates an H5File instance with specified file name and access.Methods in hdf.object.h5 with parameters of type FileFormatModifier and TypeMethodDescriptionboolean
H5File.isThisType(FileFormat theFile)
Checks if the specified FileFormat instance has the HDF5 format.Constructors in hdf.object.h5 with parameters of type FileFormatModifierConstructorDescriptionH5CompoundDS(FileFormat theFile, String theName, String thePath)
Constructs an instance of a HDF5 compound dataset with given file, dataset name and path.H5CompoundDS(FileFormat theFile, String theName, String thePath, long[] oid)
Deprecated.Not for public use in the future.
UsingH5CompoundDS(FileFormat, String, String)
H5Datatype(FileFormat theFile, long nativeID)
Constructs a Datatype with a given native datatype identifier.H5Datatype(FileFormat theFile, long nativeID, Datatype pbase)
Constructs a Datatype with a given native datatype identifier.H5Datatype(FileFormat theFile, String name, String path)
Constructs an named HDF5 data type object for a given file, dataset name and group path.H5Datatype(FileFormat theFile, String name, String path, long[] oid)
Deprecated.Not for public use in the future.H5Group(FileFormat theFile, String name, String path, Group parent)
Constructs an HDF5 group with specific name, path, and parent.H5Group(FileFormat theFile, String name, String path, Group parent, long[] oid)
Deprecated.Not for public use in the future.
UsingH5Group(FileFormat, String, String, Group)
H5Link(FileFormat theFile, String name, String path)
Constructs an HDF5 link with specific name, path, and parent.H5Link(FileFormat theFile, String theName, String thePath, long[] oid)
H5ScalarDS(FileFormat theFile, String theName, String thePath)
Constructs an instance of a H5 scalar dataset with given file, dataset name and path.H5ScalarDS(FileFormat theFile, String theName, String thePath, long[] oid)
Deprecated.Not for public use in the future.
UsingH5ScalarDS(FileFormat, String, String)
-
Uses of FileFormat in hdf.object.nc2
Subclasses of FileFormat in hdf.object.nc2Methods in hdf.object.nc2 that return FileFormatModifier and TypeMethodDescriptionNC2File.createInstance(String filename, int access)
Creates a NC2File instance with specified file name and READ access.Methods in hdf.object.nc2 with parameters of type FileFormatModifier and TypeMethodDescriptionboolean
NC2File.isThisType(FileFormat fileformat)
Checks if the given file format is a NetCDF3 file.Constructors in hdf.object.nc2 with parameters of type FileFormatModifierConstructorDescriptionNC2Dataset(FileFormat fileFormat, ucar.nc2.Variable ncDataset, long[] oid)
Constructs an NC2Dataset object with specific netcdf variable.NC2Group(FileFormat fileFormat, String name, String path, Group parent, long[] theID)
Constructs an NC2 group with specific name, path, and parent. -
Uses of FileFormat in hdf.view
Methods in hdf.view that return FileFormatModifier and TypeMethodDescriptionstatic FileFormat
Tools.createNewFile(String filename, String dir, String type, List<FileFormat> openFiles)
Create a new HDF file with default file creation propertiesMethods in hdf.view with parameters of type FileFormatModifier and TypeMethodDescriptionvoid
HDFView.closeFile(FileFormat theFile)
void
HDFView.writeDataToFile(FileFormat theFile)
Write the change of data to the given file.Method parameters in hdf.view with type arguments of type FileFormatModifier and TypeMethodDescriptionstatic FileFormat
Tools.createNewFile(String filename, String dir, String type, List<FileFormat> openFiles)
Create a new HDF file with default file creation properties -
Uses of FileFormat in hdf.view.dialog
Fields in hdf.view.dialog declared as FileFormatConstructor parameters in hdf.view.dialog with type arguments of type FileFormatModifierConstructorDescriptionImageConversionDialog(org.eclipse.swt.widgets.Shell parent, String typeFrom, String typeTo, String dir, List<FileFormat> openFiles)
Constructs a FileConversionDialog -
Uses of FileFormat in hdf.view.TreeView
Methods in hdf.view.TreeView that return FileFormatModifier and TypeMethodDescriptionDefaultTreeView.getSelectedFile()
Gets the selected file.TreeView.getSelectedFile()
Gets the selected the file.Opens a file and retrieves the file structure of the file.Opens a file and retrieves the file structure of the file.DefaultTreeView.reopenFile(FileFormat fileFormat, int newFileAccessMode)
TreeView.reopenFile(FileFormat theFile, int newFileAccessMode)
Methods in hdf.view.TreeView that return types with arguments of type FileFormatMethods in hdf.view.TreeView with parameters of type FileFormatModifier and TypeMethodDescriptionvoid
DefaultTreeView.closeFile(FileFormat file)
Close a filevoid
TreeView.closeFile(FileFormat file)
close a fileDefaultTreeView.reopenFile(FileFormat fileFormat, int newFileAccessMode)
TreeView.reopenFile(FileFormat theFile, int newFileAccessMode)
void
DefaultTreeView.saveFile(FileFormat file)
Save a filevoid
TreeView.saveFile(FileFormat file)
save a file
createFile(String, int)