public enum TaxonCategories extends Enum<TaxonCategories> implements Comparable<TaxonCategories>
| Enum Constant and Description |
|---|
CLASS |
DIVISION |
DOMAIN |
FAMILY |
GENUS |
KINGDOM |
ORDER |
PHYLUM |
SPECIES |
SUBCLASS |
SUBDIVISION |
SUBFAMILY |
SUBORDER |
SUBPHYLUM |
SUPERORDER |
| Modifier and Type | Method and Description |
|---|---|
static TaxonCategories |
getByOrder(int position) |
int |
getOrder() |
static TaxonCategories |
getParent(TaxonCategories taxon) |
static TaxonCategories |
getTaxonCategory(String taxonRank) |
static TaxonCategories |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaxonCategories[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfcompareTopublic static final TaxonCategories DOMAIN
public static final TaxonCategories KINGDOM
public static final TaxonCategories PHYLUM
public static final TaxonCategories DIVISION
public static final TaxonCategories SUBPHYLUM
public static final TaxonCategories SUBDIVISION
public static final TaxonCategories CLASS
public static final TaxonCategories SUBCLASS
public static final TaxonCategories SUPERORDER
public static final TaxonCategories ORDER
public static final TaxonCategories SUBORDER
public static final TaxonCategories FAMILY
public static final TaxonCategories SUBFAMILY
public static final TaxonCategories GENUS
public static final TaxonCategories SPECIES
public static TaxonCategories[] values()
for (TaxonCategories c : TaxonCategories.values()) System.out.println(c);
public static TaxonCategories 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 nullpublic int getOrder()
public static TaxonCategories getByOrder(int position)
public static TaxonCategories getParent(TaxonCategories taxon)
public static TaxonCategories getTaxonCategory(String taxonRank)
Copyright © 2020. All Rights Reserved.