Enum AssertOperatorCodes
- java.lang.Object
-
- java.lang.Enum<AssertOperatorCodes>
-
- org.hl7.fhir.r4.model.codesystems.AssertOperatorCodes
-
- All Implemented Interfaces:
Serializable,Comparable<AssertOperatorCodes>
public enum AssertOperatorCodes extends Enum<AssertOperatorCodes>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTAINSCompare value string contains a known value.EMPTYCompare value is empty.EQUALSDefault value.EVALEvaluate the FHIRPath expression as a boolean condition.GREATERTHANCompare value to be greater than a known value.INCompare value within a known set of values.LESSTHANCompare value to be less than a known value.NOTCONTAINSCompare value string does not contain a known value.NOTEMPTYCompare value is not empty.NOTEQUALSNot equals comparison.NOTINCompare value not within a known set of values.NULLadded to help the parsers
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AssertOperatorCodesfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static AssertOperatorCodesvalueOf(String name)Returns the enum constant of this type with the specified name.static AssertOperatorCodes[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQUALS
public static final AssertOperatorCodes EQUALS
Default value. Equals comparison.
-
NOTEQUALS
public static final AssertOperatorCodes NOTEQUALS
Not equals comparison.
-
IN
public static final AssertOperatorCodes IN
Compare value within a known set of values.
-
NOTIN
public static final AssertOperatorCodes NOTIN
Compare value not within a known set of values.
-
GREATERTHAN
public static final AssertOperatorCodes GREATERTHAN
Compare value to be greater than a known value.
-
LESSTHAN
public static final AssertOperatorCodes LESSTHAN
Compare value to be less than a known value.
-
EMPTY
public static final AssertOperatorCodes EMPTY
Compare value is empty.
-
NOTEMPTY
public static final AssertOperatorCodes NOTEMPTY
Compare value is not empty.
-
CONTAINS
public static final AssertOperatorCodes CONTAINS
Compare value string contains a known value.
-
NOTCONTAINS
public static final AssertOperatorCodes NOTCONTAINS
Compare value string does not contain a known value.
-
EVAL
public static final AssertOperatorCodes EVAL
Evaluate the FHIRPath expression as a boolean condition.
-
NULL
public static final AssertOperatorCodes NULL
added to help the parsers
-
-
Method Detail
-
values
public static AssertOperatorCodes[] 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 (AssertOperatorCodes c : AssertOperatorCodes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AssertOperatorCodes 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
-
fromCode
public static AssertOperatorCodes fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-