public enum SearchModifierCode extends Enum<SearchModifierCode>
| Enum Constant and Description |
|---|
ABOVE
The search parameter tests whether the value in a resource subsumes the specified value (is-a, or hierarchical relationships).
|
BELOW
The search parameter tests whether the value in a resource is subsumed by the specified value (is-a, or hierarchical relationships).
|
CONTAINS
The search parameter returns resources that include the supplied parameter value anywhere within the field being searched.
|
EXACT
The search parameter returns resources that have a value that exactly matches the supplied parameter (the whole string, including casing and accents).
|
IDENTIFIER
The search parameter applies to the identifier on the resource, not the reference.
|
IN
The search parameter is a URI (relative or absolute) that identifies a value set, and the search parameter tests whether the coding is in the specified value set.
|
MISSING
The search parameter returns resources that have a value or not.
|
NOT
The search parameter returns resources that do not contain a match.
|
NOTIN
The search parameter is a URI (relative or absolute) that identifies a value set, and the search parameter tests whether the coding is not in the specified value set.
|
NULL
added to help the parsers
|
OFTYPE
The search parameter has the format system|code|value, where the system and code refer to an Identifier.type.coding.system and .code, and match if any of the type codes match.
|
TEXT
The search parameter is processed as a string that searches text associated with the code/value - either CodeableConcept.text, Coding.display, or Identifier.type.text.
|
TYPE
The search parameter only applies to the Resource Type specified as a modifier (e.g.
|
| Modifier and Type | Method and Description |
|---|---|
static SearchModifierCode |
fromCode(String codeString) |
String |
getDefinition() |
String |
getDisplay() |
String |
getSystem() |
String |
toCode() |
static SearchModifierCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SearchModifierCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchModifierCode MISSING
public static final SearchModifierCode EXACT
public static final SearchModifierCode CONTAINS
public static final SearchModifierCode NOT
public static final SearchModifierCode TEXT
public static final SearchModifierCode IN
public static final SearchModifierCode NOTIN
public static final SearchModifierCode BELOW
public static final SearchModifierCode ABOVE
public static final SearchModifierCode TYPE
public static final SearchModifierCode IDENTIFIER
public static final SearchModifierCode OFTYPE
public static final SearchModifierCode NULL
public static SearchModifierCode[] values()
for (SearchModifierCode c : SearchModifierCode.values()) System.out.println(c);
public static SearchModifierCode 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 SearchModifierCode 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.