Package org.gbif.api.vocabulary
Enum TechnicalInstallationType
- java.lang.Object
-
- java.lang.Enum<TechnicalInstallationType>
-
- org.gbif.api.vocabulary.TechnicalInstallationType
-
- All Implemented Interfaces:
Serializable
,Comparable<TechnicalInstallationType>
@Deprecated public enum TechnicalInstallationType extends Enum<TechnicalInstallationType>
Deprecated.This class is no longer used.- See Also:
InstallationType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BIOCASE_INSTALLATION
Deprecated.BIOCASE technical installation.DiGIR_INSTALLATION
Deprecated.DiGIR technical installation.HTTP_INSTALLATION
Deprecated.HTTP technical installation.IPT_INSTALLATION
Deprecated.IPT instances.TAPIR_INSTALLATION
Deprecated.TAPIR technical installation.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static TechnicalInstallationType
valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name.static TechnicalInstallationType[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IPT_INSTALLATION
public static final TechnicalInstallationType IPT_INSTALLATION
Deprecated.IPT instances.
-
DiGIR_INSTALLATION
public static final TechnicalInstallationType DiGIR_INSTALLATION
Deprecated.DiGIR technical installation.
-
TAPIR_INSTALLATION
public static final TechnicalInstallationType TAPIR_INSTALLATION
Deprecated.TAPIR technical installation.
-
BIOCASE_INSTALLATION
public static final TechnicalInstallationType BIOCASE_INSTALLATION
Deprecated.BIOCASE technical installation.
-
HTTP_INSTALLATION
public static final TechnicalInstallationType HTTP_INSTALLATION
Deprecated.HTTP technical installation.
-
-
Method Detail
-
values
public static TechnicalInstallationType[] 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 (TechnicalInstallationType c : TechnicalInstallationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TechnicalInstallationType 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
-
-