Enum UriParamQualifierEnum

java.lang.Object
java.lang.Enum<UriParamQualifierEnum>
ca.uhn.fhir.rest.param.UriParamQualifierEnum
All Implemented Interfaces:
Serializable, Comparable<UriParamQualifierEnum>

Qualifiers for UriParam
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    The search parameter is a concept with the form [system]|[code], and the search parameter tests whether the coding in a resource subsumes the specified search code.
    The search parameter is a concept with the form [system]|[code], and the search parameter tests whether the coding in a resource subsumes the specified search code.
    The contains modifier allows clients to indicate that a supplied URI input should be matched as a case-insensitive and combining-character insensitive match anywhere in the target URI.
  • Method Summary

    Modifier and Type
    Method
    Description
    forValue(String theValue)
    Returns the UriParamQualifierEnum matching the given qualifier value, such as :below, or null
    Returns the qualifier value, e.g.
    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

    • ABOVE

      public static final UriParamQualifierEnum ABOVE
      The search parameter is a concept with the form [system]|[code], and the search parameter tests whether the coding in a resource subsumes the specified search code. For example, the search concept has an is-a relationship with the coding in the resource, and this includes the coding itself.

      Value :above

    • BELOW

      public static final UriParamQualifierEnum BELOW
      The search parameter is a concept with the form [system]|[code], and the search parameter tests whether the coding in a resource subsumes the specified search code. For example, the search concept has an is-a relationship with the coding in the resource, and this includes the coding itself.

      Value :below

    • CONTAINS

      public static final UriParamQualifierEnum CONTAINS
      The contains modifier allows clients to indicate that a supplied URI input should be matched as a case-insensitive and combining-character insensitive match anywhere in the target URI.

      Value :contains

  • Method Details

    • values

      public static UriParamQualifierEnum[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static UriParamQualifierEnum valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • getValue

      public String getValue()
      Returns the qualifier value, e.g. :below
    • forValue

      public static UriParamQualifierEnum forValue(String theValue)
      Returns the UriParamQualifierEnum matching the given qualifier value, such as :below, or null