Enum Class UriParamQualifierEnum

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

Qualifiers for UriParam
  • 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 class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static UriParamQualifierEnum valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class 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