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 SummaryEnum Constants Enum Constant Description BIOMEDICAL_RESEARCH_INSTITUTEDeprecated.BOTANICAL_GARDENDeprecated.HERBARIUMDeprecated.LIVING_ORGANISM_COLLECTIONDeprecated.MEDICAL_RESEARCH_INSTITUTEDeprecated.MUSEUMDeprecated.MUSEUM_HERBARIUM_PRIVATE_NON_PROFITDeprecated.OTHER_INSTITUTIONAL_TYPEDeprecated.OTHER_TYPE_RESEARCH_INSTITUTION_BIOREPOSITORYDeprecated.UNIVERSITY_COLLEGEDeprecated.ZOO_AQUARIUMDeprecated.
 - 
Method SummaryAll Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static InstitutionTypevalueOf(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_INSTITUTEpublic static final InstitutionType BIOMEDICAL_RESEARCH_INSTITUTE Deprecated.
 - 
BOTANICAL_GARDENpublic static final InstitutionType BOTANICAL_GARDEN Deprecated.
 - 
HERBARIUMpublic static final InstitutionType HERBARIUM Deprecated.
 - 
LIVING_ORGANISM_COLLECTIONpublic static final InstitutionType LIVING_ORGANISM_COLLECTION Deprecated.
 - 
MEDICAL_RESEARCH_INSTITUTEpublic static final InstitutionType MEDICAL_RESEARCH_INSTITUTE Deprecated.
 - 
MUSEUMpublic static final InstitutionType MUSEUM Deprecated.
 - 
MUSEUM_HERBARIUM_PRIVATE_NON_PROFITpublic static final InstitutionType MUSEUM_HERBARIUM_PRIVATE_NON_PROFIT Deprecated.
 - 
OTHER_INSTITUTIONAL_TYPEpublic static final InstitutionType OTHER_INSTITUTIONAL_TYPE Deprecated.
 - 
OTHER_TYPE_RESEARCH_INSTITUTION_BIOREPOSITORYpublic static final InstitutionType OTHER_TYPE_RESEARCH_INSTITUTION_BIOREPOSITORY Deprecated.
 - 
UNIVERSITY_COLLEGEpublic static final InstitutionType UNIVERSITY_COLLEGE Deprecated.
 - 
ZOO_AQUARIUMpublic static final InstitutionType ZOO_AQUARIUM Deprecated.
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 
- 
 
-