Enum InstitutionGovernance
- java.lang.Object
-
- java.lang.Enum<InstitutionGovernance>
-
- org.gbif.api.vocabulary.collections.InstitutionGovernance
-
- All Implemented Interfaces:
Serializable
,Comparable<InstitutionGovernance>
@Deprecated public enum InstitutionGovernance extends Enum<InstitutionGovernance>
Deprecated.Mechanisms, processes and relations by which an institution is controlled and directed.Deprecated to use the vocabulary server instead.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACADEMIC_FEDERAL
Deprecated.ACADEMIC_FOR_PROFIT
Deprecated.ACADEMIC_LOCAL
Deprecated.ACADEMIC_NON_PROFIT
Deprecated.ACADEMIC_STATE
Deprecated.FEDERAL
Deprecated.FOR_PROFIT
Deprecated.LOCAL
Deprecated.NON_PROFIT
Deprecated.OTHER
Deprecated.STATE
Deprecated.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static InstitutionGovernance
valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name.static InstitutionGovernance[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACADEMIC_FEDERAL
public static final InstitutionGovernance ACADEMIC_FEDERAL
Deprecated.
-
ACADEMIC_FOR_PROFIT
public static final InstitutionGovernance ACADEMIC_FOR_PROFIT
Deprecated.
-
ACADEMIC_LOCAL
public static final InstitutionGovernance ACADEMIC_LOCAL
Deprecated.
-
ACADEMIC_NON_PROFIT
public static final InstitutionGovernance ACADEMIC_NON_PROFIT
Deprecated.
-
ACADEMIC_STATE
public static final InstitutionGovernance ACADEMIC_STATE
Deprecated.
-
FEDERAL
public static final InstitutionGovernance FEDERAL
Deprecated.
-
FOR_PROFIT
public static final InstitutionGovernance FOR_PROFIT
Deprecated.
-
LOCAL
public static final InstitutionGovernance LOCAL
Deprecated.
-
NON_PROFIT
public static final InstitutionGovernance NON_PROFIT
Deprecated.
-
OTHER
public static final InstitutionGovernance OTHER
Deprecated.
-
STATE
public static final InstitutionGovernance STATE
Deprecated.
-
-
Method Detail
-
values
public static InstitutionGovernance[] 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 (InstitutionGovernance c : InstitutionGovernance.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InstitutionGovernance 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
-
-