Package org.ehrbase.api.service
Enum TerminologyServer.SubsumptionResult
- java.lang.Object
-
- java.lang.Enum<TerminologyServer.SubsumptionResult>
-
- org.ehrbase.api.service.TerminologyServer.SubsumptionResult
-
- All Implemented Interfaces:
Serializable,Comparable<TerminologyServer.SubsumptionResult>
- Enclosing interface:
- TerminologyServer<T,ID,U>
public static enum TerminologyServer.SubsumptionResult extends Enum<TerminologyServer.SubsumptionResult>
Possible subsumption evaluation results.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EQUIVALENTNOTSUBSUMEDSUBSUMEDBYSUBSUMES
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TerminologyServer.SubsumptionResultvalueOf(String name)Returns the enum constant of this type with the specified name.static TerminologyServer.SubsumptionResult[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQUIVALENT
public static final TerminologyServer.SubsumptionResult EQUIVALENT
-
SUBSUMES
public static final TerminologyServer.SubsumptionResult SUBSUMES
-
SUBSUMEDBY
public static final TerminologyServer.SubsumptionResult SUBSUMEDBY
-
NOTSUBSUMED
public static final TerminologyServer.SubsumptionResult NOTSUBSUMED
-
-
Method Detail
-
values
public static TerminologyServer.SubsumptionResult[] 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.SubsumptionResult c : TerminologyServer.SubsumptionResult.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.SubsumptionResult 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
-
-