Uses of Class
hdf.object.FileFormat
-
Packages that use FileFormat Package Description hdf.object hdf.view -
-
Uses of FileFormat in hdf.object
Fields in hdf.object declared as FileFormat Modifier and Type Field Description protected FileFormat
HObject. fileFormat
The file which contains the objectMethods in hdf.object that return FileFormat Modifier and Type Method Description FileFormat
FileFormat. create(String fileName)
Deprecated.As of 2.4, replaced bycreateFile(String, int)
FileFormat
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.FileFormat
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.FileFormat
FileFormat. open(String pathname, int access)
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 FileFormat Modifier and Type Method Description static 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 FileFormat Constructor Description CompoundDS(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, 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.view
Methods in hdf.view that return FileFormat Modifier and Type Method Description static 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 FileFormat Modifier and Type Method Description void
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 FileFormat Modifier and Type Method Description static FileFormat
Tools. createNewFile(String filename, String dir, String type, List<FileFormat> openFiles)
Create a new HDF file with default file creation properties
-