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)
.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 |
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.