public static enum ValueSet.FilterOperator extends Enum<ValueSet.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 with the generic types
|
REGEX
The specified property of the code matches the regex specified in the provided value.
|
| Modifier and Type | Method and Description |
|---|---|
static ValueSet.FilterOperator |
fromCode(String codeString) |
String |
getDefinition() |
String |
getDisplay() |
String |
getSystem() |
String |
toCode() |
static ValueSet.FilterOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValueSet.FilterOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValueSet.FilterOperator EQUAL
public static final ValueSet.FilterOperator ISA
public static final ValueSet.FilterOperator DESCENDENTOF
public static final ValueSet.FilterOperator ISNOTA
public static final ValueSet.FilterOperator REGEX
public static final ValueSet.FilterOperator IN
public static final ValueSet.FilterOperator NOTIN
public static final ValueSet.FilterOperator GENERALIZES
public static final ValueSet.FilterOperator EXISTS
public static final ValueSet.FilterOperator NULL
public static ValueSet.FilterOperator[] values()
for (ValueSet.FilterOperator c : ValueSet.FilterOperator.values()) System.out.println(c);
public static ValueSet.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 ValueSet.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.