public enum FilterOperator extends Enum<FilterOperator>
| Enum Constant and Description |
|---|
DESCENDENTOF
Includes all concept ids that have a transitive is-a relationship with the concept Id provided as the value, excluding the provided concept itself i.e.
|
EQUAL
The specified property of the code equals the provided value.
|
EXISTS
The specified property of the code has at least one value (if the specified value is true; if the specified value is false, then matches when the specified property of the code has no values).
|
GENERALIZES
Includes all concept ids that have a transitive is-a relationship from the concept Id provided as the value, including the provided concept itself (i.e.
|
IN
The specified property of the code is in the set of codes or concepts specified in the provided value (comma separated list).
|
ISA
Includes all concept ids that have a transitive is-a relationship with the concept Id provided as the value, including the provided concept itself (include descendant codes and self).
|
ISNOTA
The specified property of the code does not have an is-a relationship with the provided value.
|
NOTIN
The specified property of the code is not in the set of codes or concepts specified in the provided value (comma separated list).
|
NULL
added to help the parsers
|
REGEX
The specified property of the code matches the regex specified in the provided value.
|
| Modifier and Type | Method and Description |
|---|---|
static FilterOperator |
fromCode(String codeString) |
String |
getDefinition() |
String |
getDisplay() |
String |
getSystem() |
String |
toCode() |
static FilterOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterOperator EQUAL
public static final FilterOperator ISA
public static final FilterOperator DESCENDENTOF
public static final FilterOperator ISNOTA
public static final FilterOperator REGEX
public static final FilterOperator IN
public static final FilterOperator NOTIN
public static final FilterOperator GENERALIZES
public static final FilterOperator EXISTS
public static final FilterOperator NULL
public static FilterOperator[] values()
for (FilterOperator c : FilterOperator.values()) System.out.println(c);
public static FilterOperator 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 FilterOperator fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
org.hl7.fhir.exceptions.FHIRExceptionpublic String getDefinition()
public String getDisplay()
Copyright © 2014–2021 Health Level 7. All rights reserved.