Enum V3RelationalOperator
- java.lang.Object
-
- java.lang.Enum<V3RelationalOperator>
-
- org.hl7.fhir.r4.model.codesystems.V3RelationalOperator
-
- All Implemented Interfaces:
Serializable,Comparable<V3RelationalOperator>
public enum V3RelationalOperator extends Enum<V3RelationalOperator>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CTSpecified set of things includes value being evaluated.EQEqual condition applied to comparisons.GEGreater than or equal condition applied to comparisons.GNA generic comparison selects a record for inclusion in the response if the beginning of the designated element value matches the select string.GTGreater than condition applied to comparisons.LELess than or equal condition applied to comparisons.LTLess than condition applied to comparisons.NENot equal condition applied to comparisons.NULLadded to help the parsers
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static V3RelationalOperatorfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static V3RelationalOperatorvalueOf(String name)Returns the enum constant of this type with the specified name.static V3RelationalOperator[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CT
public static final V3RelationalOperator CT
Specified set of things includes value being evaluated.
-
EQ
public static final V3RelationalOperator EQ
Equal condition applied to comparisons.
-
GE
public static final V3RelationalOperator GE
Greater than or equal condition applied to comparisons.
-
GN
public static final V3RelationalOperator GN
A generic comparison selects a record for inclusion in the response if the beginning of the designated element value matches the select string.
-
GT
public static final V3RelationalOperator GT
Greater than condition applied to comparisons.
-
LE
public static final V3RelationalOperator LE
Less than or equal condition applied to comparisons.
-
LT
public static final V3RelationalOperator LT
Less than condition applied to comparisons.
-
NE
public static final V3RelationalOperator NE
Not equal condition applied to comparisons.
-
NULL
public static final V3RelationalOperator NULL
added to help the parsers
-
-
Method Detail
-
values
public static V3RelationalOperator[] 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 (V3RelationalOperator c : V3RelationalOperator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static V3RelationalOperator 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 V3RelationalOperator fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-