Package org.gbif.api.vocabulary
Enum Class BasisOfRecord
- All Implemented Interfaces:
Serializable
,Comparable<BasisOfRecord>
,Constable
A simple enumeration of all DarwinCore values of BasisOfRecord legal for occurrences.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAn occurrence record describing a fossilized specimen.An occurrence record describing an observation made by one or more people.Deprecated.use BasisOfRecord.OCCURRENCE instead.An occurrence record describing a living specimen, e.g.An occurrence record describing an observation made by a machine.A reference to or citation of one, a part of, or multiple specimens in scholarly publications.An occurrence record based on samples taken from other specimens or the environment.An occurrence record describing an observation.An existence of an Organism (sensu http://rs.tdwg.org/dwc/terms/Organism) at a particular place at a particular time.An occurrence record describing a preserved specimen.Deprecated.replaced by BasisOfRecord.OCCURRENCE. -
Method Summary
Modifier and TypeMethodDescriptionstatic BasisOfRecord
Returns the enum constant of this class with the specified name.static BasisOfRecord[]
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
-
PRESERVED_SPECIMEN
An occurrence record describing a preserved specimen. -
FOSSIL_SPECIMEN
An occurrence record describing a fossilized specimen. -
LIVING_SPECIMEN
An occurrence record describing a living specimen, e.g. managed animals in a zoo or cultivated plants in a garden. -
OBSERVATION
An occurrence record describing an observation. -
HUMAN_OBSERVATION
An occurrence record describing an observation made by one or more people. -
MACHINE_OBSERVATION
An occurrence record describing an observation made by a machine. -
MATERIAL_SAMPLE
An occurrence record based on samples taken from other specimens or the environment. -
LITERATURE
Deprecated.use BasisOfRecord.OCCURRENCE instead.An occurrence record based on literature alone. -
MATERIAL_CITATION
A reference to or citation of one, a part of, or multiple specimens in scholarly publications. -
OCCURRENCE
An existence of an Organism (sensu http://rs.tdwg.org/dwc/terms/Organism) at a particular place at a particular time. -
UNKNOWN
Deprecated.replaced by BasisOfRecord.OCCURRENCE.Unknown basis for the record.
-
-
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
-