public enum Tables extends Enum<Tables>
Enum Constant and Description |
---|
class_table |
family_table |
kingdom |
MAPS |
order_table |
phylum |
Modifier and Type | Method and Description |
---|---|
static Tables |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Tables[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Tables MAPS
public static final Tables kingdom
public static final Tables phylum
public static final Tables order_table
public static final Tables family_table
public static final Tables class_table
public static Tables[] values()
for (Tables c : Tables.values()) System.out.println(c);
public static Tables 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 © 2016. All Rights Reserved.