Enum CollectionFacetParameter
- java.lang.Object
-
- java.lang.Enum<CollectionFacetParameter>
-
- org.gbif.api.vocabulary.collections.CollectionFacetParameter
-
- All Implemented Interfaces:
Serializable
,Comparable<CollectionFacetParameter>
,CollectionsFacetParameter
public enum CollectionFacetParameter extends Enum<CollectionFacetParameter> implements CollectionsFacetParameter
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCESSION_STATUS
CITY
CLASS_KEY
CONTENT_TYPE
COUNTRY
DESCRIPTOR_COUNTRY
FAMILY_KEY
GENUS_KEY
INSTITUTION_KEY
KINGDOM_KEY
OBJECT_CLASSIFICATION
ORDER_KEY
PHYLUM_KEY
PRESERVATION_TYPE
RECORDED_BY
SPECIES_KEY
TYPE_STATUS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CollectionFacetParameter
valueOf(String name)
Returns the enum constant of this type with the specified name.static CollectionFacetParameter[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COUNTRY
public static final CollectionFacetParameter COUNTRY
-
CITY
public static final CollectionFacetParameter CITY
-
PRESERVATION_TYPE
public static final CollectionFacetParameter PRESERVATION_TYPE
-
CONTENT_TYPE
public static final CollectionFacetParameter CONTENT_TYPE
-
ACCESSION_STATUS
public static final CollectionFacetParameter ACCESSION_STATUS
-
INSTITUTION_KEY
public static final CollectionFacetParameter INSTITUTION_KEY
-
TYPE_STATUS
public static final CollectionFacetParameter TYPE_STATUS
-
DESCRIPTOR_COUNTRY
public static final CollectionFacetParameter DESCRIPTOR_COUNTRY
-
KINGDOM_KEY
public static final CollectionFacetParameter KINGDOM_KEY
-
PHYLUM_KEY
public static final CollectionFacetParameter PHYLUM_KEY
-
CLASS_KEY
public static final CollectionFacetParameter CLASS_KEY
-
ORDER_KEY
public static final CollectionFacetParameter ORDER_KEY
-
FAMILY_KEY
public static final CollectionFacetParameter FAMILY_KEY
-
GENUS_KEY
public static final CollectionFacetParameter GENUS_KEY
-
SPECIES_KEY
public static final CollectionFacetParameter SPECIES_KEY
-
OBJECT_CLASSIFICATION
public static final CollectionFacetParameter OBJECT_CLASSIFICATION
-
RECORDED_BY
public static final CollectionFacetParameter RECORDED_BY
-
-
Method Detail
-
values
public static CollectionFacetParameter[] 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 (CollectionFacetParameter c : CollectionFacetParameter.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CollectionFacetParameter 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
-
-