public static enum IHDF5WriterConfigurator.FileFormat extends java.lang.Enum<IHDF5WriterConfigurator.FileFormat>
Enum Constant and Description |
---|
ALLOW_1_8
Start with HDF5 1.6 format, but allow usage of features which require HDF5 1.8 library to
read.
|
STRICTLY_1_6
Enforce compatibility with HDF5 1.6 format.
|
STRICTLY_1_8
Enforce compatibility with HDF5 1.8 format.
|
Modifier and Type | Method and Description |
---|---|
static IHDF5WriterConfigurator.FileFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IHDF5WriterConfigurator.FileFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IHDF5WriterConfigurator.FileFormat STRICTLY_1_6
public static final IHDF5WriterConfigurator.FileFormat ALLOW_1_8
public static final IHDF5WriterConfigurator.FileFormat STRICTLY_1_8
public static IHDF5WriterConfigurator.FileFormat[] values()
for (IHDF5WriterConfigurator.FileFormat c : IHDF5WriterConfigurator.FileFormat.values()) System.out.println(c);
public static IHDF5WriterConfigurator.FileFormat 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 null