Package org.gbif.api.model.occurrence
Enum Class DownloadFormat
- All Implemented Interfaces:
Serializable
,Comparable<DownloadFormat>
,Constable
Download output requested format.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSpecial export format for the Bionomia project.Darwin Core Archive file that is a zip of all indexed fields in both verbatim and interpreted, plus multimedia and metadata files.Special Avro format for the Map of Life project.Avro (with Deflate compression codec) format export of the most common indexed terms.Zipped text file of the most common indexed terms, but note that it is delimited by tabs, not commas.Parquet (with Snappy compression codec) format export of the most common indexed terms.Avro (with Deflate compression codec) format export of the most common indexed terms, plus many verbatim terms.TSV format export of the distinct species and taxonomic field associated to each.Experimental feature. Zipped tab-delimited text file resulting from an SQL query. -
Method Summary
Modifier and TypeMethodDescriptionstatic DownloadFormat
Returns the enum constant of this class with the specified name.static DownloadFormat[]
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
-
DWCA
Darwin Core Archive file that is a zip of all indexed fields in both verbatim and interpreted, plus multimedia and metadata files. -
SIMPLE_CSV
Zipped text file of the most common indexed terms, but note that it is delimited by tabs, not commas. -
SIMPLE_AVRO
Avro (with Deflate compression codec) format export of the most common indexed terms. -
SIMPLE_WITH_VERBATIM_AVRO
Avro (with Deflate compression codec) format export of the most common indexed terms, plus many verbatim terms. More verbatim terms may be added upon request. -
SPECIES_LIST
TSV format export of the distinct species and taxonomic field associated to each. -
MAP_OF_LIFE
Special Avro format for the Map of Life project. -
BIONOMIA
Special export format for the Bionomia project. -
SIMPLE_PARQUET
Parquet (with Snappy compression codec) format export of the most common indexed terms. -
SQL_TSV_ZIP
Experimental feature. Zipped tab-delimited text file resulting from an SQL query.
-
-
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
-
getExtension
-