Package | Description |
---|---|
hdf.object | |
hdf.object.h4 | |
hdf.object.h5 | |
hdf.view |
Modifier and Type | Field and Description |
---|---|
protected FileFormat |
HObject.fileFormat
The file which contains the object
|
Modifier and Type | Method and Description |
---|---|
FileFormat |
FileFormat.create(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 |
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.
|
FileFormat |
HObject.getFileFormat()
Returns the file that contains the object.
|
static FileFormat |
FileFormat.getFileFormat(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(String filename)
Creates a FileFormat instance for the specified file.
|
FileFormat |
FileFormat.open(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(String key)
Removes a FileFormat from the list of supported formats.
|
Modifier and Type | Method and 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 ID
|
static 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.
|
Constructor and Description |
---|
CompoundDS(FileFormat theFile,
String name,
String path)
Constructs a CompoundDS object with the given file, dataset name and path.
|
CompoundDS(FileFormat theFile,
String name,
String path,
long[] oid)
Deprecated.
Not for public use in the future.
Using CompoundDS.CompoundDS(FileFormat, String, String) |
Dataset(FileFormat theFile,
String name,
String path)
Constructs a Dataset object with a given file, name and path.
|
Dataset(FileFormat theFile,
String name,
String path,
long[] oid)
Deprecated.
Not for public use in the future.
Using Dataset.Dataset(FileFormat, String, String) |
Datatype(FileFormat theFile,
String name,
String path)
Constructs a named datatype with a given file, name and path.
|
Datatype(FileFormat theFile,
String name,
String path,
long[] oid)
Deprecated.
Not for public use in the future.
Using Datatype.Datatype(FileFormat, String, String) |
Group(FileFormat theFile,
String name,
String path,
Group parent)
Constructs an instance of the group with specific name, path and parent
group.
|
Group(FileFormat theFile,
String name,
String path,
Group parent,
long[] oid)
Deprecated.
Not for public use in the future.
Using Group.Group(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.
Using ScalarDS.ScalarDS(FileFormat, String, String) |
Modifier and Type | Class and Description |
---|---|
class |
H4File
This class provides file level APIs.
|
Modifier and Type | Method and Description |
---|---|
FileFormat |
H4File.createFile(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(String filename,
int access)
Creates an H4File instance with specified file name and access.
|
Modifier and Type | Method and Description |
---|---|
boolean |
H4File.isThisType(FileFormat fileformat)
Checks if the given file format is an HDF4 file.
|
Constructor and Description |
---|
H4GRImage(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.
|
Modifier and Type | Class and Description |
---|---|
class |
H5File
H5File is an implementation of the FileFormat class for HDF5 files.
|
Modifier and Type | Method and Description |
---|---|
FileFormat |
H5File.createFile(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(String filename,
int access)
Creates an H5File instance with specified file name and access.
|
Modifier and Type | Method and Description |
---|---|
boolean |
H5File.isThisType(FileFormat theFile)
Checks if the specified FileFormat instance has the HDF5 format.
|
Constructor and Description |
---|
H5CompoundDS(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.
Using H5CompoundDS.H5CompoundDS(FileFormat, String, String) |
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.
Using H5Datatype.H5Datatype(FileFormat, String, String) |
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.
Using H5Group.H5Group(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.
Using H5ScalarDS.H5ScalarDS(FileFormat, String, String) |
Modifier and Type | Method and Description |
---|---|
FileFormat |
DefaultTreeView.getSelectedFile()
Gets the selected file.
|
FileFormat |
TreeView.getSelectedFile()
Gets the selected the file.
|
FileFormat |
DefaultTreeView.openFile(String filename,
int accessID)
Opens a file and retrieves the file structure of the file.
|
FileFormat |
TreeView.openFile(String filename,
int accessID)
Opens a file and retrieves the file structure of the file.
|
FileFormat |
DefaultTreeView.reopenFile(FileFormat fileFormat) |
FileFormat |
TreeView.reopenFile(FileFormat theFile) |
Modifier and Type | Method and Description |
---|---|
List<FileFormat> |
DefaultTreeView.getCurrentFiles() |
List<FileFormat> |
TreeView.getCurrentFiles() |
Modifier and Type | Method and Description |
---|---|
void |
DefaultTreeView.closeFile(FileFormat file)
Close a file
|
void |
TreeView.closeFile(FileFormat file)
close a file
|
FileFormat |
DefaultTreeView.reopenFile(FileFormat fileFormat) |
FileFormat |
TreeView.reopenFile(FileFormat theFile) |
void |
DefaultTreeView.saveFile(FileFormat file)
Save a file
|
void |
TreeView.saveFile(FileFormat file)
save a file
|
Copyright © 2017. All Rights Reserved.