Package com.ibm.fhir.model.type.code
Class AssertionOperatorType
- java.lang.Object
-
- com.ibm.fhir.model.visitor.AbstractVisitable
-
- com.ibm.fhir.model.type.Element
-
- com.ibm.fhir.model.type.String
-
- com.ibm.fhir.model.type.Code
-
- com.ibm.fhir.model.type.code.AssertionOperatorType
-
- All Implemented Interfaces:
Visitable
@Generated("com.ibm.fhir.tools.CodeGenerator") public class AssertionOperatorType extends Code
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAssertionOperatorType.Builderstatic classAssertionOperatorType.ValueSet
-
Field Summary
Fields Modifier and Type Field Description static AssertionOperatorTypeCONTAINScontainsstatic AssertionOperatorTypeEMPTYemptystatic AssertionOperatorTypeEQUALSequalsstatic AssertionOperatorTypeEVALevaluatestatic AssertionOperatorTypeGREATER_THANgreaterThanstatic AssertionOperatorTypeINinstatic AssertionOperatorTypeLESS_THANlessThanstatic AssertionOperatorTypeNOT_CONTAINSnotContainsstatic AssertionOperatorTypeNOT_EMPTYnotEmptystatic AssertionOperatorTypeNOT_EQUALSnotEqualsstatic AssertionOperatorTypeNOT_INnotIn
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AssertionOperatorType.Builderbuilder()static Codecode(String value)Inherited factory method for creating AssertionOperatorType objects from a passed string value.booleanequals(Object obj)AssertionOperatorType.ValueSetgetValueAsEnumConstant()inthashCode()static AssertionOperatorTypeof(AssertionOperatorType.ValueSet value)Factory method for creating AssertionOperatorType objects from a passed enum value.static AssertionOperatorTypeof(String value)Factory method for creating AssertionOperatorType objects from a passed string value.static Stringstring(String value)Inherited factory method for creating AssertionOperatorType objects from a passed string value.AssertionOperatorType.BuildertoBuilder()Create a new Builder from the contents of this Element-
Methods inherited from class com.ibm.fhir.model.type.String
getValue, hasChildren
-
Methods inherited from class com.ibm.fhir.model.type.Element
as, getExtension, getId, is
-
-
-
-
Field Detail
-
EQUALS
public static final AssertionOperatorType EQUALS
equalsDefault value. Equals comparison.
-
NOT_EQUALS
public static final AssertionOperatorType NOT_EQUALS
notEqualsNot equals comparison.
-
IN
public static final AssertionOperatorType IN
inCompare value within a known set of values.
-
NOT_IN
public static final AssertionOperatorType NOT_IN
notInCompare value not within a known set of values.
-
GREATER_THAN
public static final AssertionOperatorType GREATER_THAN
greaterThanCompare value to be greater than a known value.
-
LESS_THAN
public static final AssertionOperatorType LESS_THAN
lessThanCompare value to be less than a known value.
-
EMPTY
public static final AssertionOperatorType EMPTY
emptyCompare value is empty.
-
NOT_EMPTY
public static final AssertionOperatorType NOT_EMPTY
notEmptyCompare value is not empty.
-
CONTAINS
public static final AssertionOperatorType CONTAINS
containsCompare value string contains a known value.
-
NOT_CONTAINS
public static final AssertionOperatorType NOT_CONTAINS
notContainsCompare value string does not contain a known value.
-
EVAL
public static final AssertionOperatorType EVAL
evaluateEvaluate the FHIRPath expression as a boolean condition.
-
-
Method Detail
-
getValueAsEnumConstant
public AssertionOperatorType.ValueSet getValueAsEnumConstant()
-
of
public static AssertionOperatorType of(AssertionOperatorType.ValueSet value)
Factory method for creating AssertionOperatorType objects from a passed enum value.
-
of
public static AssertionOperatorType of(String value)
Factory method for creating AssertionOperatorType objects from a passed string value.- Parameters:
value- A string that matches one of the allowed code values- Throws:
IllegalArgumentException- If the passed string cannot be parsed into an allowed code value
-
string
public static String string(String value)
Inherited factory method for creating AssertionOperatorType objects from a passed string value.- Parameters:
value- A string that matches one of the allowed code values- Throws:
IllegalArgumentException- If the passed string cannot be parsed into an allowed code value
-
code
public static Code code(String value)
Inherited factory method for creating AssertionOperatorType objects from a passed string value.- Parameters:
value- A string that matches one of the allowed code values- Throws:
IllegalArgumentException- If the passed string cannot be parsed into an allowed code value
-
toBuilder
public AssertionOperatorType.Builder toBuilder()
Description copied from class:ElementCreate a new Builder from the contents of this Element
-
builder
public static AssertionOperatorType.Builder builder()
-
-