public enum ParamPrefixEnum extends Enum<ParamPrefixEnum>
DateParam, NumberParam, and
QuantityParam| Enum Constant and Description |
|---|
APPROXIMATE
Code Value: eq
The actual value is equal to the given value
|
ENDS_BEFORE
Code Value: eb
The range of the search value does overlap not with the range of the target value, and the range above the search value contains the range of the target value
|
EQUAL
Code Value: eq
The actual value is equal to the given value
|
GREATERTHAN
Code Value: gt
The actual value is greater than the given value.
|
GREATERTHAN_OR_EQUALS
Code Value: ge
The actual value is greater than or equal to the given value.
|
LESSTHAN
Code Value: lt
The actual value is less than the given value.
|
LESSTHAN_OR_EQUALS
Code Value: le
The actual value is less than or equal to the given value.
|
NOT_EQUAL
Code Value: ne
The actual value is not equal to the given value
|
STARTS_AFTER
Code Value: sa
The range of the search value does not overlap with the range of the target value, and the range below the search value contains the range of the target value
|
| Modifier and Type | Method and Description |
|---|---|
static ParamPrefixEnum |
forValue(String theValue)
Returns the prefix associated with a given DSTU2+ value (e.g.
|
String |
getValue()
Returns the value, e.g.
|
static ParamPrefixEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParamPrefixEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParamPrefixEnum APPROXIMATE
public static final ParamPrefixEnum ENDS_BEFORE
public static final ParamPrefixEnum EQUAL
public static final ParamPrefixEnum GREATERTHAN
public static final ParamPrefixEnum GREATERTHAN_OR_EQUALS
public static final ParamPrefixEnum LESSTHAN
public static final ParamPrefixEnum LESSTHAN_OR_EQUALS
public static final ParamPrefixEnum NOT_EQUAL
public static final ParamPrefixEnum STARTS_AFTER
public static ParamPrefixEnum[] values()
for (ParamPrefixEnum c : ParamPrefixEnum.values()) System.out.println(c);
public static ParamPrefixEnum 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 ParamPrefixEnum forValue(String theValue)
lt or eq)theValue - e.g. < or ~null if no prefix matches the valueCopyright © 2014–2017 University Health Network. All rights reserved.