public interface IHDF5ReaderConfigurator
IHDF5Reader
.
Obtain an object implementing this interface by calling IHDF5Factory.configureForReading(java.io.File)
.
If you want the reader to perform numeric conversions, call performNumericConversions()
before calling reader()
.
Modifier and Type | Method and Description |
---|---|
IHDF5ReaderConfigurator |
noAutoDereference()
Switches off automatic dereferencing of unresolved references.
|
IHDF5ReaderConfigurator |
performNumericConversions()
Will try to perform numeric conversions where appropriate if supported by the platform.
|
boolean |
platformSupportsNumericConversions()
Returns
true , if this platform supports numeric conversions. |
IHDF5Reader |
reader()
Returns an
IHDF5Reader based on this configuration. |
boolean platformSupportsNumericConversions()
true
, if this platform supports numeric conversions.IHDF5ReaderConfigurator performNumericConversions()
Numeric conversions can be platform dependent and are not available on all platforms. Be advised not to rely on numeric conversions if you can help it!
IHDF5ReaderConfigurator noAutoDereference()
IHDF5ReferenceReader.read(String, boolean)
with
resolveName=false
in places where a dataset path is required.
IHDF5Reader reader()
IHDF5Reader
based on this configuration.