public enum QuantityComparatorEnum extends Enum<QuantityComparatorEnum>
| Enum Constant and Description |
|---|
GREATER_OR_EQUAL_TO
Display: Greater or Equal to
Code Value: >= The actual value is greater than or equal to the given value. |
GREATER_THAN
Display: Greater than
Code Value: > The actual value is greater than the given value. |
LESS_OR_EQUAL_TO
Display: Less or Equal to
Code Value: <= The actual value is less than or equal to the given value. |
LESS_THAN
Display: Less than
Code Value: < The actual value is less than the given value. |
| Modifier and Type | Field and Description |
|---|---|
static IValueSetEnumBinder<QuantityComparatorEnum> |
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:
QuantityComparator
|
| Modifier and Type | Method and Description |
|---|---|
static QuantityComparatorEnum |
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 QuantityComparatorEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QuantityComparatorEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QuantityComparatorEnum LESS_THAN
public static final QuantityComparatorEnum LESS_OR_EQUAL_TO
public static final QuantityComparatorEnum GREATER_OR_EQUAL_TO
public static final QuantityComparatorEnum GREATER_THAN
public static final String VALUESET_IDENTIFIER
public static final String VALUESET_NAME
public static final IValueSetEnumBinder<QuantityComparatorEnum> VALUESET_BINDER
public static QuantityComparatorEnum[] values()
for (QuantityComparatorEnum c : QuantityComparatorEnum.values()) System.out.println(c);
public static QuantityComparatorEnum 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 QuantityComparatorEnum forCode(String theCode)
Copyright © 2014–2016 University Health Network. All rights reserved.