public enum AssertionOperatorTypeEnum extends Enum<AssertionOperatorTypeEnum>
| Enum Constant and Description |
|---|
CONTAINS
Display: contains
Code Value: contains Compare value string contains a known value. |
EMPTY
Display: empty
Code Value: empty Compare value is empty. |
EQUALS
Display: equals
Code Value: equals Default value. |
GREATERTHAN
Display: greaterThan
Code Value: greaterThan Compare value to be greater than a known value. |
IN
Display: in
Code Value: in Compare value within a known set of values. |
LESSTHAN
Display: lessThan
Code Value: lessThan Compare value to be less than a known value. |
NOTCONTAINS
Display: notContains
Code Value: notContains Compare value string does not contain a known value. |
NOTEMPTY
Display: notEmpty
Code Value: notEmpty Compare value is not empty. |
NOTEQUALS
Display: notEquals
Code Value: notEquals Not equals comparison. |
NOTIN
Display: notIn
Code Value: notIn Compare value not within a known set of values. |
| Modifier and Type | Field and Description |
|---|---|
static IValueSetEnumBinder<AssertionOperatorTypeEnum> |
VALUESET_BINDER
Converts codes to their respective enumerated values
|
static String |
VALUESET_IDENTIFIER
Identifier for this Value Set:
|
static String |
VALUESET_NAME
Name for this Value Set:
AssertionOperatorType
|
| Modifier and Type | Method and Description |
|---|---|
static AssertionOperatorTypeEnum |
forCode(String theCode)
Returns the enumerated value associated with this code
|
String |
getCode()
Returns the code associated with this enumerated value
|
String |
getSystem()
Returns the code system associated with this enumerated value
|
static AssertionOperatorTypeEnum |
valueOf(String name)
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.
|
public static final AssertionOperatorTypeEnum EQUALS
public static final AssertionOperatorTypeEnum NOTEQUALS
public static final AssertionOperatorTypeEnum IN
public static final AssertionOperatorTypeEnum NOTIN
public static final AssertionOperatorTypeEnum GREATERTHAN
public static final AssertionOperatorTypeEnum LESSTHAN
public static final AssertionOperatorTypeEnum EMPTY
public static final AssertionOperatorTypeEnum NOTEMPTY
public static final AssertionOperatorTypeEnum CONTAINS
public static final AssertionOperatorTypeEnum NOTCONTAINS
public static final String VALUESET_IDENTIFIER
public static final String VALUESET_NAME
public static final IValueSetEnumBinder<AssertionOperatorTypeEnum> VALUESET_BINDER
public static AssertionOperatorTypeEnum[] values()
for (AssertionOperatorTypeEnum c : AssertionOperatorTypeEnum.values()) System.out.println(c);
public static AssertionOperatorTypeEnum valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static AssertionOperatorTypeEnum forCode(String theCode)
Copyright © 2014–2016 University Health Network. All rights reserved.