Enum Enumerations.SearchModifierCode

java.lang.Object
java.lang.Enum<Enumerations.SearchModifierCode>
org.hl7.fhir.r5.model.Enumerations.SearchModifierCode
All Implemented Interfaces:
Serializable, Comparable<Enumerations.SearchModifierCode>
Enclosing class:
Enumerations

  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    The search parameter tests whether the value in a resource subsumes the specified value (is-a, or hierarchical relationships).
    The search parameter tests whether the value in a resource is subsumed by the specified value (is-a, or hierarchical relationships).
    Tests whether the textual display value in a resource (e.g., CodeableConcept.text, Coding.display, or Reference.display) matches the supplied parameter value.
    The search parameter returns resources that include the supplied parameter value anywhere within the field being searched.
    The search parameter returns resources that have a value that exactly matches the supplied parameter (the whole string, including casing and accents).
    The search parameter applies to the identifier on the resource, not the reference.
    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.
    The search parameter indicates an inclusion directive (_include, _revinclude) that is applied to an included resource instead of the matching resource.
    The search parameter returns resources that have a value or not.
    The search parameter returns resources that do not contain a match.
    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.
    added to help the parsers
    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.
    The search parameter is processed as a string that searches text associated with the code/value - either CodeableConcept.text, Coding.display, Identifier.type.text, or Reference.display.
    Tests whether the value in a resource matches the supplied parameter value using advanced text handling that searches text associated with the code/value - e.g., CodeableConcept.text, Coding.display, or Identifier.type.text.
    The search parameter only applies to the Resource Type specified as a modifier (e.g.
  • Method Summary

    Modifier and Type
    Method
    Description
    fromCode(String codeString)
     
     
     
     
    static boolean
    isValidCode(String codeString)
     
     
    Returns the enum constant of this type with the specified name.
    Returns an array containing the constants of this enum type, in the order they are declared.

    Methods inherited from class java.lang.Enum

    clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • MISSING

      The search parameter returns resources that have a value or not.
    • EXACT

      The search parameter returns resources that have a value that exactly matches the supplied parameter (the whole string, including casing and accents).
    • CONTAINS

      The search parameter returns resources that include the supplied parameter value anywhere within the field being searched.
    • NOT

      public static final Enumerations.SearchModifierCode NOT
      The search parameter returns resources that do not contain a match.
    • TEXT

      The search parameter is processed as a string that searches text associated with the code/value - either CodeableConcept.text, Coding.display, Identifier.type.text, or Reference.display.
    • IN

      public static final Enumerations.SearchModifierCode 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.
    • 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.
    • BELOW

      The search parameter tests whether the value in a resource is subsumed by the specified value (is-a, or hierarchical relationships).
    • ABOVE

      The search parameter tests whether the value in a resource subsumes the specified value (is-a, or hierarchical relationships).
    • TYPE

      The search parameter only applies to the Resource Type specified as a modifier (e.g. the modifier is not actually :type, but :Patient etc.).
    • IDENTIFIER

      The search parameter applies to the identifier on the resource, not the reference.
    • 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. All 3 parts must be present.
    • CODETEXT

      Tests whether the textual display value in a resource (e.g., CodeableConcept.text, Coding.display, or Reference.display) matches the supplied parameter value.
    • TEXTADVANCED

      Tests whether the value in a resource matches the supplied parameter value using advanced text handling that searches text associated with the code/value - e.g., CodeableConcept.text, Coding.display, or Identifier.type.text.
    • ITERATE

      The search parameter indicates an inclusion directive (_include, _revinclude) that is applied to an included resource instead of the matching resource.
    • NULL

      added to help the parsers
  • Method Details