public enum BasisOfRecord extends Enum<BasisOfRecord>
| Enum Constant and Description |
|---|
FossilSpecimen |
HumanObservation |
LivingSpecimen |
MachineObservation |
PreservedSpecimen |
| Modifier and Type | Method and Description |
|---|---|
static BasisOfRecord |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BasisOfRecord[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BasisOfRecord PreservedSpecimen
public static final BasisOfRecord FossilSpecimen
public static final BasisOfRecord LivingSpecimen
public static final BasisOfRecord HumanObservation
public static final BasisOfRecord MachineObservation
public static BasisOfRecord[] values()
for (BasisOfRecord c : BasisOfRecord.values()) System.out.println(c);
public static BasisOfRecord valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2015. All Rights Reserved.