
Package org.hl7.fhir.dstu3.model
Enum TestScript.AssertionOperatorType
- java.lang.Object
-
- java.lang.Enum<TestScript.AssertionOperatorType>
-
- org.hl7.fhir.dstu3.model.TestScript.AssertionOperatorType
-
- All Implemented Interfaces:
Serializable
,Comparable<TestScript.AssertionOperatorType>
- Enclosing class:
- TestScript
public static enum TestScript.AssertionOperatorType extends Enum<TestScript.AssertionOperatorType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTAINS
Compare value string contains a known value.EMPTY
Compare value is empty.EQUALS
Default value.EVAL
Evaluate the fluentpath expression as a boolean condition.GREATERTHAN
Compare value to be greater than a known value.IN
Compare value within a known set of values.LESSTHAN
Compare value to be less than a known value.NOTCONTAINS
Compare value string does not contain a known value.NOTEMPTY
Compare value is not empty.NOTEQUALS
Not equals comparison.NOTIN
Compare value not within a known set of values.NULL
added to help the parsers with the generic types
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TestScript.AssertionOperatorType
fromCode(String codeString)
String
getDefinition()
String
getDisplay()
String
getSystem()
String
toCode()
static TestScript.AssertionOperatorType
valueOf(String name)
Returns the enum constant of this type with the specified name.static TestScript.AssertionOperatorType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQUALS
public static final TestScript.AssertionOperatorType EQUALS
Default value. Equals comparison.
-
NOTEQUALS
public static final TestScript.AssertionOperatorType NOTEQUALS
Not equals comparison.
-
IN
public static final TestScript.AssertionOperatorType IN
Compare value within a known set of values.
-
NOTIN
public static final TestScript.AssertionOperatorType NOTIN
Compare value not within a known set of values.
-
GREATERTHAN
public static final TestScript.AssertionOperatorType GREATERTHAN
Compare value to be greater than a known value.
-
LESSTHAN
public static final TestScript.AssertionOperatorType LESSTHAN
Compare value to be less than a known value.
-
EMPTY
public static final TestScript.AssertionOperatorType EMPTY
Compare value is empty.
-
NOTEMPTY
public static final TestScript.AssertionOperatorType NOTEMPTY
Compare value is not empty.
-
CONTAINS
public static final TestScript.AssertionOperatorType CONTAINS
Compare value string contains a known value.
-
NOTCONTAINS
public static final TestScript.AssertionOperatorType NOTCONTAINS
Compare value string does not contain a known value.
-
EVAL
public static final TestScript.AssertionOperatorType EVAL
Evaluate the fluentpath expression as a boolean condition.
-
NULL
public static final TestScript.AssertionOperatorType NULL
added to help the parsers with the generic types
-
-
Method Detail
-
values
public static TestScript.AssertionOperatorType[] 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 (TestScript.AssertionOperatorType c : TestScript.AssertionOperatorType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TestScript.AssertionOperatorType 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 TestScript.AssertionOperatorType fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-