Package org.ehrbase.api.service
Enum TerminologyServer.TerminologyAdapter
- java.lang.Object
-
- java.lang.Enum<TerminologyServer.TerminologyAdapter>
-
- org.ehrbase.api.service.TerminologyServer.TerminologyAdapter
-
- All Implemented Interfaces:
Serializable,Comparable<TerminologyServer.TerminologyAdapter>
- Enclosing interface:
- TerminologyServer<T,ID,U>
public static enum TerminologyServer.TerminologyAdapter extends Enum<TerminologyServer.TerminologyAdapter>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAdapterId()static booleanisAdapterSupported(String adapterToCheck)static TerminologyServer.TerminologyAdaptervalueOf(String name)Returns the enum constant of this type with the specified name.static TerminologyServer.TerminologyAdapter[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FHIR
public static final TerminologyServer.TerminologyAdapter FHIR
-
OCEAN
public static final TerminologyServer.TerminologyAdapter OCEAN
-
BETTER
public static final TerminologyServer.TerminologyAdapter BETTER
-
DTS4
public static final TerminologyServer.TerminologyAdapter DTS4
-
INDIZEN
public static final TerminologyServer.TerminologyAdapter INDIZEN
-
-
Method Detail
-
values
public static TerminologyServer.TerminologyAdapter[] values()
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 (TerminologyServer.TerminologyAdapter c : TerminologyServer.TerminologyAdapter.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TerminologyServer.TerminologyAdapter valueOf(String name)
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
-
getAdapterId
public String getAdapterId()
-
isAdapterSupported
public static boolean isAdapterSupported(String adapterToCheck)
-
-