Package org.gbif.api.vocabulary
Enum Class EndpointType
- All Implemented Interfaces:
Serializable
,Comparable<EndpointType>
,Constable
Enumeration for all endpoint types.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAnnual Checklist Exchange Format (ACEF) from the Catalogue of Life.A BioCASe protocol compliant service.A BioCASe XML Archive, as explained by the BioCASe wiki.The BIOM JSON file format for representing biological sample by observation contingency tables.The BIOM HDF5 file format.A DiGIR service endpoint.A DiGIR service slightly modified for the MANIS network.A Darwin Core Archive as defined by the Darwin Core Text Guidelines.A single EML metadata document in any EML version.Syndication feeds like RSS or ATOM of various flavors.The Open Archives Initiative Protocol for Metadata Harvesting.Any other service not covered by this enum so far.A TAPIR service.Taxon Concept data given as RDF based on the TDWG ontology.A Taxon Concept Schema document.An OGC Web Feature Service.An OGC Web Map Service. -
Method Summary
Modifier and TypeMethodDescriptionstatic EndpointType
fromString
(String endpointType) static EndpointType
Returns the enum constant of this class with the specified name.static EndpointType[]
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
-
EML
A single EML metadata document in any EML version. -
FEED
Syndication feeds like RSS or ATOM of various flavors. The feeds can serve very different purpose, for example if attached to an organisation it can be news items. Attached to a technical installation like the IPT it should return the latest dataset resources. -
WFS
An OGC Web Feature Service. -
WMS
An OGC Web Map Service. -
TCS_RDF
Taxon Concept data given as RDF based on the TDWG ontology. -
TCS_XML
A Taxon Concept Schema document. -
DWC_ARCHIVE
A Darwin Core Archive as defined by the Darwin Core Text Guidelines. -
DIGIR
A DiGIR service endpoint. -
DIGIR_MANIS
A DiGIR service slightly modified for the MANIS network. -
TAPIR
A TAPIR service. -
BIOCASE
A BioCASe protocol compliant service. -
BIOCASE_XML_ARCHIVE
A BioCASe XML Archive, as explained by the BioCASe wiki. -
OAI_PMH
The Open Archives Initiative Protocol for Metadata Harvesting. A OAI-PMH compliant data provider service. -
COLDP
-
CAMTRAP_DP
-
BIOM_1_0
The BIOM JSON file format for representing biological sample by observation contingency tables. -
BIOM_2_1
The BIOM HDF5 file format. -
ACEF
Annual Checklist Exchange Format (ACEF) from the Catalogue of Life. -
TEXT_TREE
TextTree. is a simple format to represent taxonomic trees using indented, plain text. -
OTHER
Any other service not covered by this enum so far.
-
-
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 EndpointType or null
-