public enum HDF5DataClass extends java.lang.Enum<HDF5DataClass>
Enum Constant and Description |
---|
BITFIELD |
BOOLEAN |
COMPOUND |
ENUM |
FLOAT |
INTEGER |
OPAQUE |
OTHER |
REFERENCE |
STRING |
Modifier and Type | Method and Description |
---|---|
static HDF5DataClass |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HDF5DataClass[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HDF5DataClass BITFIELD
public static final HDF5DataClass ENUM
public static final HDF5DataClass INTEGER
public static final HDF5DataClass FLOAT
public static final HDF5DataClass STRING
public static final HDF5DataClass OPAQUE
public static final HDF5DataClass BOOLEAN
public static final HDF5DataClass COMPOUND
public static final HDF5DataClass REFERENCE
public static final HDF5DataClass OTHER
public static HDF5DataClass[] values()
for (HDF5DataClass c : HDF5DataClass.values()) System.out.println(c);
public static HDF5DataClass 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