Package org.gbif.api.model.literature
Enum LiteratureTopic
- java.lang.Object
-
- java.lang.Enum<LiteratureTopic>
-
- org.gbif.api.model.literature.LiteratureTopic
-
- All Implemented Interfaces:
Serializable
,Comparable<LiteratureTopic>
public enum LiteratureTopic extends Enum<LiteratureTopic>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AGRICULTURE
BIODIVERSITY_SCIENCE
BIOGEOGRAPHY
CITIZEN_SCIENCE
CLIMATE_CHANGE
CONSERVATION
DATA_MANAGEMENT
DATA_PAPER
ECOLOGY
ECOSYSTEM_SERVICES
EVOLUTION
FRESHWATER
HUMAN_HEALTH
INVASIVES
MARINE
PHYLOGENETICS
SPECIES_DISTRIBUTIONS
TAXONOMY
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LiteratureTopic
valueOf(String name)
Returns the enum constant of this type with the specified name.static LiteratureTopic[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AGRICULTURE
public static final LiteratureTopic AGRICULTURE
-
BIODIVERSITY_SCIENCE
public static final LiteratureTopic BIODIVERSITY_SCIENCE
-
BIOGEOGRAPHY
public static final LiteratureTopic BIOGEOGRAPHY
-
CITIZEN_SCIENCE
public static final LiteratureTopic CITIZEN_SCIENCE
-
CLIMATE_CHANGE
public static final LiteratureTopic CLIMATE_CHANGE
-
CONSERVATION
public static final LiteratureTopic CONSERVATION
-
DATA_MANAGEMENT
public static final LiteratureTopic DATA_MANAGEMENT
-
DATA_PAPER
public static final LiteratureTopic DATA_PAPER
-
ECOLOGY
public static final LiteratureTopic ECOLOGY
-
ECOSYSTEM_SERVICES
public static final LiteratureTopic ECOSYSTEM_SERVICES
-
EVOLUTION
public static final LiteratureTopic EVOLUTION
-
FRESHWATER
public static final LiteratureTopic FRESHWATER
-
HUMAN_HEALTH
public static final LiteratureTopic HUMAN_HEALTH
-
INVASIVES
public static final LiteratureTopic INVASIVES
-
MARINE
public static final LiteratureTopic MARINE
-
PHYLOGENETICS
public static final LiteratureTopic PHYLOGENETICS
-
SPECIES_DISTRIBUTIONS
public static final LiteratureTopic SPECIES_DISTRIBUTIONS
-
TAXONOMY
public static final LiteratureTopic TAXONOMY
-
-
Method Detail
-
values
public static LiteratureTopic[] 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 (LiteratureTopic c : LiteratureTopic.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LiteratureTopic 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 nameNullPointerException
- if the argument is null
-
-