public static enum IHDF5WriterConfigurator.FileFormatVersion extends java.lang.Enum<IHDF5WriterConfigurator.FileFormatVersion>
For details, see https://www.hdfgroup.org/wp-content/uploads/2018/04/RFC-Setting-Bounds-for-Object-Creation-in-HDF5-1-10-0.pdf
Enum Constant and Description |
---|
EARLIEST
The library will create objects with the earliest possible format versions.
|
LATEST
The library will allow objects to be created with the latest format versions available to the current library release version.
|
V1_10
The library will allow objects to be created with the latest format versions available to HDF5 v1.10.
|
V1_8
The library will allow objects to be created with the latest format versions available to HDF5 v1.8.
|
Modifier and Type | Method and Description |
---|---|
boolean |
supportsMDCCache() |
static IHDF5WriterConfigurator.FileFormatVersion |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IHDF5WriterConfigurator.FileFormatVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IHDF5WriterConfigurator.FileFormatVersion EARLIEST
public static final IHDF5WriterConfigurator.FileFormatVersion LATEST
public static final IHDF5WriterConfigurator.FileFormatVersion V1_8
public static final IHDF5WriterConfigurator.FileFormatVersion V1_10
public static IHDF5WriterConfigurator.FileFormatVersion[] values()
for (IHDF5WriterConfigurator.FileFormatVersion c : IHDF5WriterConfigurator.FileFormatVersion.values()) System.out.println(c);
public static IHDF5WriterConfigurator.FileFormatVersion valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic boolean supportsMDCCache()