Enum DownloadFormat

    • Enum Constant Detail

      • DWCA

        public static final DownloadFormat 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

        public static final DownloadFormat SIMPLE_CSV
        Zipped text file of the most common indexed terms, but note that it is delimited by tabs, not commas.
      • SIMPLE_AVRO

        public static final DownloadFormat SIMPLE_AVRO
        Avro (with Deflate compression codec) format export of the most common indexed terms.
      • SIMPLE_WITH_VERBATIM_AVRO

        public static final DownloadFormat 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

        public static final DownloadFormat SPECIES_LIST
        TSV format export of the distinct species and taxonomic field associated to each.
      • SIMPLE_PARQUET

        public static final DownloadFormat SIMPLE_PARQUET
        Parquet (with Snappy compression codec) format export of the most common indexed terms.
      • SQL_TSV_ZIP

        public static final DownloadFormat SQL_TSV_ZIP
        Experimental feature. Zipped tab-delimited text file resulting from an SQL query.
    • Method Detail

      • values

        public static DownloadFormat[] 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 (DownloadFormat c : DownloadFormat.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static DownloadFormat 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 name
        NullPointerException - if the argument is null