Package ca.uhn.fhir.model.dstu2.valueset
Enum AssertionOperatorTypeEnum
java.lang.Object
java.lang.Enum<AssertionOperatorTypeEnum>
ca.uhn.fhir.model.dstu2.valueset.AssertionOperatorTypeEnum
- All Implemented Interfaces:
Serializable
,Comparable<AssertionOperatorTypeEnum>
-
Enum Constant Summary
Enum ConstantDescriptionDisplay: contains
Code Value: contains Compare value string contains a known value.Display: empty
Code Value: empty Compare value is empty.Display: equals
Code Value: equals Default value.Display: greaterThan
Code Value: greaterThan Compare value to be greater than a known value.Display: in
Code Value: in Compare value within a known set of values.Display: lessThan
Code Value: lessThan Compare value to be less than a known value.Display: notContains
Code Value: notContains Compare value string does not contain a known value.Display: notEmpty
Code Value: notEmpty Compare value is not empty.Display: notEquals
Code Value: notEquals Not equals comparison.Display: notIn
Code Value: notIn Compare value not within a known set of values. -
Field Summary
Modifier and TypeFieldDescriptionstatic final ca.uhn.fhir.model.api.IValueSetEnumBinder
<AssertionOperatorTypeEnum> Converts codes to their respective enumerated valuesstatic final String
Identifier for this Value Set:static final String
Name for this Value Set: AssertionOperatorType -
Method Summary
Modifier and TypeMethodDescriptionstatic AssertionOperatorTypeEnum
Returns the enumerated value associated with this codegetCode()
Returns the code associated with this enumerated valueReturns the code system associated with this enumerated valuestatic AssertionOperatorTypeEnum
Returns the enum constant of this type with the specified name.static AssertionOperatorTypeEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
EQUALS
Display: equals
Code Value: equals Default value. Equals comparison. -
NOTEQUALS
Display: notEquals
Code Value: notEquals Not equals comparison. -
IN
Display: in
Code Value: in Compare value within a known set of values. -
NOTIN
Display: notIn
Code Value: notIn Compare value not within a known set of values. -
GREATERTHAN
Display: greaterThan
Code Value: greaterThan Compare value to be greater than a known value. -
LESSTHAN
Display: lessThan
Code Value: lessThan Compare value to be less than a known value. -
EMPTY
Display: empty
Code Value: empty Compare value is empty. -
NOTEMPTY
Display: notEmpty
Code Value: notEmpty Compare value is not empty. -
CONTAINS
Display: contains
Code Value: contains Compare value string contains a known value. -
NOTCONTAINS
Display: notContains
Code Value: notContains Compare value string does not contain a known value.
-
-
Field Details
-
VALUESET_IDENTIFIER
Identifier for this Value Set:- See Also:
-
VALUESET_NAME
Name for this Value Set: AssertionOperatorType- See Also:
-
VALUESET_BINDER
public static final ca.uhn.fhir.model.api.IValueSetEnumBinder<AssertionOperatorTypeEnum> VALUESET_BINDERConverts codes to their respective enumerated values
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getCode
Returns the code associated with this enumerated value -
getSystem
Returns the code system associated with this enumerated value -
forCode
Returns the enumerated value associated with this code
-