public enum HDF5StorageLayout extends java.lang.Enum<HDF5StorageLayout>
| Enum Constant and Description |
|---|
CHUNKED |
COMPACT |
CONTIGUOUS |
NOT_APPLICABLE |
| Modifier and Type | Method and Description |
|---|---|
static HDF5StorageLayout |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HDF5StorageLayout[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HDF5StorageLayout COMPACT
public static final HDF5StorageLayout CONTIGUOUS
public static final HDF5StorageLayout CHUNKED
public static final HDF5StorageLayout NOT_APPLICABLE
public static HDF5StorageLayout[] values()
for (HDF5StorageLayout c : HDF5StorageLayout.values()) System.out.println(c);
public static HDF5StorageLayout 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