public static enum TaxonomyStatus.Status extends Enum<TaxonomyStatus.Status>
| Enum Constant and Description |
|---|
ACCEPTED |
INVALID |
MISAPPLIED |
PROVISIONAL |
SYNONYM |
UNKNOWN |
VALID |
| Modifier and Type | Method and Description |
|---|---|
static TaxonomyStatus.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaxonomyStatus.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaxonomyStatus.Status ACCEPTED
public static final TaxonomyStatus.Status SYNONYM
public static final TaxonomyStatus.Status VALID
public static final TaxonomyStatus.Status INVALID
public static final TaxonomyStatus.Status MISAPPLIED
public static final TaxonomyStatus.Status PROVISIONAL
public static final TaxonomyStatus.Status UNKNOWN
public static TaxonomyStatus.Status[] values()
for (TaxonomyStatus.Status c : TaxonomyStatus.Status.values()) System.out.println(c);
public static TaxonomyStatus.Status 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 © 2018. All Rights Reserved.