Enum InstitutionType
- java.lang.Object
-
- java.lang.Enum<InstitutionType>
-
- org.gbif.api.vocabulary.collections.InstitutionType
-
- All Implemented Interfaces:
Serializable
,Comparable<InstitutionType>
@Deprecated public enum InstitutionType extends Enum<InstitutionType>
Deprecated.Categorization of institutions (collection holders) types. Deprecated to use the vocabulary server instead.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BIOMEDICAL_RESEARCH_INSTITUTE
Deprecated.BOTANICAL_GARDEN
Deprecated.HERBARIUM
Deprecated.LIVING_ORGANISM_COLLECTION
Deprecated.MEDICAL_RESEARCH_INSTITUTE
Deprecated.MUSEUM
Deprecated.MUSEUM_HERBARIUM_PRIVATE_NON_PROFIT
Deprecated.OTHER_INSTITUTIONAL_TYPE
Deprecated.OTHER_TYPE_RESEARCH_INSTITUTION_BIOREPOSITORY
Deprecated.UNIVERSITY_COLLEGE
Deprecated.ZOO_AQUARIUM
Deprecated.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static InstitutionType
valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name.static InstitutionType[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BIOMEDICAL_RESEARCH_INSTITUTE
public static final InstitutionType BIOMEDICAL_RESEARCH_INSTITUTE
Deprecated.
-
BOTANICAL_GARDEN
public static final InstitutionType BOTANICAL_GARDEN
Deprecated.
-
HERBARIUM
public static final InstitutionType HERBARIUM
Deprecated.
-
LIVING_ORGANISM_COLLECTION
public static final InstitutionType LIVING_ORGANISM_COLLECTION
Deprecated.
-
MEDICAL_RESEARCH_INSTITUTE
public static final InstitutionType MEDICAL_RESEARCH_INSTITUTE
Deprecated.
-
MUSEUM
public static final InstitutionType MUSEUM
Deprecated.
-
MUSEUM_HERBARIUM_PRIVATE_NON_PROFIT
public static final InstitutionType MUSEUM_HERBARIUM_PRIVATE_NON_PROFIT
Deprecated.
-
OTHER_INSTITUTIONAL_TYPE
public static final InstitutionType OTHER_INSTITUTIONAL_TYPE
Deprecated.
-
OTHER_TYPE_RESEARCH_INSTITUTION_BIOREPOSITORY
public static final InstitutionType OTHER_TYPE_RESEARCH_INSTITUTION_BIOREPOSITORY
Deprecated.
-
UNIVERSITY_COLLEGE
public static final InstitutionType UNIVERSITY_COLLEGE
Deprecated.
-
ZOO_AQUARIUM
public static final InstitutionType ZOO_AQUARIUM
Deprecated.
-
-
Method Detail
-
values
public static InstitutionType[] 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 (InstitutionType c : InstitutionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InstitutionType 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
-
-