public static enum TxSearch.TAX_NAME_CLASS extends java.lang.Enum<TxSearch.TAX_NAME_CLASS>
Enum Constant | Description |
---|---|
ALL |
|
COMMON_NAME |
|
PREFFERED_COMMON_NAME |
|
SCIENTIFIC_NAME |
|
SYNONYM |
Modifier and Type | Method | Description |
---|---|---|
java.lang.String |
toString() |
|
static TxSearch.TAX_NAME_CLASS |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static TxSearch.TAX_NAME_CLASS[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TxSearch.TAX_NAME_CLASS ALL
public static final TxSearch.TAX_NAME_CLASS SCIENTIFIC_NAME
public static final TxSearch.TAX_NAME_CLASS PREFFERED_COMMON_NAME
public static final TxSearch.TAX_NAME_CLASS COMMON_NAME
public static final TxSearch.TAX_NAME_CLASS SYNONYM
public static TxSearch.TAX_NAME_CLASS[] values()
for (TxSearch.TAX_NAME_CLASS c : TxSearch.TAX_NAME_CLASS.values()) System.out.println(c);
public static TxSearch.TAX_NAME_CLASS 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<TxSearch.TAX_NAME_CLASS>