Enum SpeciesController.TaxonQuery.FIELD
- java.lang.Object
-
- java.lang.Enum<SpeciesController.TaxonQuery.FIELD>
-
- org.openforis.collect.web.controller.SpeciesController.TaxonQuery.FIELD
-
- All Implemented Interfaces:
Serializable,Comparable<SpeciesController.TaxonQuery.FIELD>
- Enclosing class:
- SpeciesController.TaxonQuery
public static enum SpeciesController.TaxonQuery.FIELD extends Enum<SpeciesController.TaxonQuery.FIELD>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CODEFAMILY_CODEFAMILY_SCIENTIFIC_NAMESCIENTIFIC_NAMEVERNACULAR_NAME
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SpeciesController.TaxonQuery.FIELDvalueOf(String name)Returns the enum constant of this type with the specified name.static SpeciesController.TaxonQuery.FIELD[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FAMILY_CODE
public static final SpeciesController.TaxonQuery.FIELD FAMILY_CODE
-
FAMILY_SCIENTIFIC_NAME
public static final SpeciesController.TaxonQuery.FIELD FAMILY_SCIENTIFIC_NAME
-
CODE
public static final SpeciesController.TaxonQuery.FIELD CODE
-
SCIENTIFIC_NAME
public static final SpeciesController.TaxonQuery.FIELD SCIENTIFIC_NAME
-
VERNACULAR_NAME
public static final SpeciesController.TaxonQuery.FIELD VERNACULAR_NAME
-
-
Method Detail
-
values
public static SpeciesController.TaxonQuery.FIELD[] 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 (SpeciesController.TaxonQuery.FIELD c : SpeciesController.TaxonQuery.FIELD.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SpeciesController.TaxonQuery.FIELD valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-