org.forester.ws.wabi
Enum TxSearch.TAX_RANK
java.lang.Object
java.lang.Enum<TxSearch.TAX_RANK>
org.forester.ws.wabi.TxSearch.TAX_RANK
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<TxSearch.TAX_RANK>
- Enclosing class:
- TxSearch
public static enum TxSearch.TAX_RANK
- extends java.lang.Enum<TxSearch.TAX_RANK>
|
Method Summary |
java.lang.String |
toString()
|
static TxSearch.TAX_RANK |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static TxSearch.TAX_RANK[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
| Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
| Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
ALL
public static final TxSearch.TAX_RANK ALL
NO_RANK
public static final TxSearch.TAX_RANK NO_RANK
SUPERKINGDOM
public static final TxSearch.TAX_RANK SUPERKINGDOM
KINGDOM
public static final TxSearch.TAX_RANK KINGDOM
SUBKINGDOM
public static final TxSearch.TAX_RANK SUBKINGDOM
SUPERPHYLUM
public static final TxSearch.TAX_RANK SUPERPHYLUM
PHYLUM
public static final TxSearch.TAX_RANK PHYLUM
SUBPHYLUM
public static final TxSearch.TAX_RANK SUBPHYLUM
SUPERCLASS
public static final TxSearch.TAX_RANK SUPERCLASS
CLASS
public static final TxSearch.TAX_RANK CLASS
SUBCLASS
public static final TxSearch.TAX_RANK SUBCLASS
INFRACLASS
public static final TxSearch.TAX_RANK INFRACLASS
SUPERORDER
public static final TxSearch.TAX_RANK SUPERORDER
ORDER
public static final TxSearch.TAX_RANK ORDER
SUBORDER
public static final TxSearch.TAX_RANK SUBORDER
INFRAORDER
public static final TxSearch.TAX_RANK INFRAORDER
PARVORDER
public static final TxSearch.TAX_RANK PARVORDER
SUPERFAMILY
public static final TxSearch.TAX_RANK SUPERFAMILY
FAMILY
public static final TxSearch.TAX_RANK FAMILY
SUBFAMILY
public static final TxSearch.TAX_RANK SUBFAMILY
TRIBE
public static final TxSearch.TAX_RANK TRIBE
SUBTRIBE
public static final TxSearch.TAX_RANK SUBTRIBE
GENUS
public static final TxSearch.TAX_RANK GENUS
SUBGENUS
public static final TxSearch.TAX_RANK SUBGENUS
SPECIES_GROUP
public static final TxSearch.TAX_RANK SPECIES_GROUP
SPECIES_SUBGROUP
public static final TxSearch.TAX_RANK SPECIES_SUBGROUP
SPECIES
public static final TxSearch.TAX_RANK SPECIES
SUBSPECIES
public static final TxSearch.TAX_RANK SUBSPECIES
VARIETAS
public static final TxSearch.TAX_RANK VARIETAS
FORMA
public static final TxSearch.TAX_RANK FORMA
values
public static TxSearch.TAX_RANK[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (TxSearch.TAX_RANK c : TxSearch.TAX_RANK.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static TxSearch.TAX_RANK valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is null
toString
public java.lang.String toString()
- Overrides:
toString in class java.lang.Enum<TxSearch.TAX_RANK>