public interface IHDF5Factory
open(File)
and openForReading(File)
. If you need full control over the
creation process, see the methods configure(File)
and configureForReading(File)
.
Obtain an object implementing this interface by calling HDF5FactoryProvider.get()
.
Modifier and Type | Method and Description |
---|---|
IHDF5WriterConfigurator |
configure(java.io.File file)
Opens a configurator for an HDF5 file for writing and reading.
|
IHDF5ReaderConfigurator |
configureForReading(java.io.File file)
Opens a configurator for an HDF5 file for reading.
|
boolean |
hasMDCImage(java.io.File file)
Returns
true if the HDF5 file has a metadata cache image. |
boolean |
isHDF5File(java.io.File file)
Returns
true , if the file is an HDF5 file and false
otherwise. |
IHDF5Writer |
open(java.io.File file)
Opens an HDF5 file for writing and reading.
|
IHDF5Reader |
openForReading(java.io.File file)
Opens an HDF5 file for reading.
|
IHDF5Writer open(java.io.File file)
IHDF5Reader openForReading(java.io.File file)
IHDF5WriterConfigurator configure(java.io.File file)
IHDF5WriterConfigurator.writer()
in order to start
reading and writing the file.IHDF5ReaderConfigurator configureForReading(java.io.File file)
IHDF5ReaderConfigurator.reader()
in order to start reading the
file.boolean isHDF5File(java.io.File file)
true
, if the file is an HDF5 file and false
otherwise.boolean hasMDCImage(java.io.File file)
true
if the HDF5 file has a metadata cache image.