Package org.gbif.api.vocabulary
Enum Class DatasetSubtype
- All Implemented Interfaces:
Serializable
,Comparable<DatasetSubtype>
,Constable
Enumeration for all possible dataset subtypes.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA taxonomic checklist that has been derived from data that was originally occurrence data.A taxonomic checklist with a global, spatial coverage.A regional checklist that has a regional commonality in grouping names, e.g.A thematic checklist that has a theme for grouping names, e.g.A nomenclatoral checklist that is authoritative in the pure names and publication information.Observation data.Specimen data.A taxonomic checklist that is authoritative in its classification and synonymy. -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Set<DatasetSubtype>
A set of all DatasetSubtype that belong to DatasetType CHECKLIST.static final Set<DatasetSubtype>
A set of all DatasetSubtype that belong to DatasetType OCCURRENCE.static final Set<DatasetSubtype>
A set of all DatasetSubtype that belong to DatasetType SAMPLING_EVENT. -
Method Summary
Modifier and TypeMethodDescriptionstatic DatasetSubtype
fromString
(String datasetSubType) static DatasetSubtype
Returns the enum constant of this class with the specified name.static DatasetSubtype[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
TAXONOMIC_AUTHORITY
A taxonomic checklist that is authoritative in its classification and synonymy. -
NOMENCLATOR_AUTHORITY
A nomenclatoral checklist that is authoritative in the pure names and publication information. -
INVENTORY_THEMATIC
A thematic checklist that has a theme for grouping names, e.g. parasites of elephants. -
INVENTORY_REGIONAL
A regional checklist that has a regional commonality in grouping names, e.g. species in a protected area. -
GLOBAL_SPECIES_DATASET
A taxonomic checklist with a global, spatial coverage. This subtype is used in particular by the catalogue of life to assemble its aggregated checklist. -
DERIVED_FROM_OCCURRENCE
A taxonomic checklist that has been derived from data that was originally occurrence data. -
SPECIMEN
Specimen data. Possible museum collection. -
OBSERVATION
Observation data. Possible monitoring and field observations.
-
-
Field Details
-
OCCURRENCE_DATASET_SUBTYPES
A set of all DatasetSubtype that belong to DatasetType OCCURRENCE.- See Also:
-
SAMPLING_EVENT_DATASET_SUBTYPES
A set of all DatasetSubtype that belong to DatasetType SAMPLING_EVENT.- See Also:
-
CHECKLIST_DATASET_SUBTYPES
A set of all DatasetSubtype that belong to DatasetType CHECKLIST.- See Also:
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
fromString
- Returns:
- the matching DatasetSubtype or null
-