public static enum Reference.ReferenceType extends java.lang.Enum<Reference.ReferenceType>
Enum Constant and Description |
---|
OBJECT
Object Reference: A reference to another object in the HDF5 file.
|
REGION
Dataset Region Reference: A reference to a region within a dataset in the HDF5 file.
|
Modifier and Type | Method and Description |
---|---|
static Reference.ReferenceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Reference.ReferenceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Reference.ReferenceType OBJECT
public static final Reference.ReferenceType REGION
public static Reference.ReferenceType[] values()
for (Reference.ReferenceType c : Reference.ReferenceType.values()) System.out.println(c);
public static Reference.ReferenceType 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