Enum DatasetSubtype

    • Enum Constant Detail

      • NOMENCLATOR_AUTHORITY

        public static final DatasetSubtype NOMENCLATOR_AUTHORITY
        A nomenclatoral checklist that is authoritative in the pure names and publication information.
      • INVENTORY_THEMATIC

        public static final DatasetSubtype INVENTORY_THEMATIC
        A thematic checklist that has a theme for grouping names, e.g. parasites of elephants.
      • INVENTORY_REGIONAL

        public static final DatasetSubtype INVENTORY_REGIONAL
        A regional checklist that has a regional commonality in grouping names, e.g. species in a protected area.
      • GLOBAL_SPECIES_DATASET

        public static final DatasetSubtype 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.
    • Method Detail

      • values

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

        public static DatasetSubtype 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