Package org.gbif.api.vocabulary
Enum EstablishmentMeans
- java.lang.Object
-
- java.lang.Enum<EstablishmentMeans>
-
- org.gbif.api.vocabulary.EstablishmentMeans
-
- All Implemented Interfaces:
Serializable
,Comparable<EstablishmentMeans>
@Deprecated public enum EstablishmentMeans extends Enum<EstablishmentMeans>
Deprecated.Vocabulary for the establishment means of a species. This enumeration is no longer used by the occurrence APIs, Checklistbank still relies on it.- See Also:
Distribution
, rs.gbif.org vocabulary, Darwin Core vocabulary
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INTRODUCED
Deprecated.INVASIVE
Deprecated.MANAGED
Deprecated.NATIVE
Deprecated.NATURALISED
Deprecated.UNCERTAIN
Deprecated.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static EstablishmentMeans
valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name.static EstablishmentMeans[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NATIVE
public static final EstablishmentMeans NATIVE
Deprecated.
-
INTRODUCED
public static final EstablishmentMeans INTRODUCED
Deprecated.
-
NATURALISED
public static final EstablishmentMeans NATURALISED
Deprecated.
-
INVASIVE
public static final EstablishmentMeans INVASIVE
Deprecated.
-
MANAGED
public static final EstablishmentMeans MANAGED
Deprecated.
-
UNCERTAIN
public static final EstablishmentMeans UNCERTAIN
Deprecated.
-
-
Method Detail
-
values
public static EstablishmentMeans[] values()
Deprecated.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 (EstablishmentMeans c : EstablishmentMeans.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EstablishmentMeans valueOf(String name)
Deprecated.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
-
-