Enum RestSearchParameterTypeEnum

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

  • Enum Constant Details

    • NUMBER

      public static final RestSearchParameterTypeEnum NUMBER
      Code Value: number Search parameter SHALL be a number (a whole number, or a decimal).
    • DATE

      public static final RestSearchParameterTypeEnum DATE
      Code Value: date Search parameter is on a date/time. The date format is the standard XML format, though other formats may be supported.
    • STRING

      public static final RestSearchParameterTypeEnum STRING
      Code Value: string Search parameter is a simple string, like a name part. Search is case-insensitive and accent-insensitive. May match just the start of a string. String parameters may contain spaces.
    • TOKEN

      public static final RestSearchParameterTypeEnum TOKEN
      Code Value: token Search parameter on a coded element or identifier. May be used to search through the text, displayname, code and code/codesystem (for codes) and label, system and key (for identifier). Its value is either a string or a pair of namespace and value, separated by a "|", depending on the modifier used.
    • REFERENCE

      Code Value: reference A reference to another resource.
    • COMPOSITE

      Code Value: composite A composite search parameter that combines a search on two values together.
    • QUANTITY

      Code Value: quantity A search parameter that searches on a quantity.
    • URI

      public static final RestSearchParameterTypeEnum URI
      Code Value: quantity A search parameter that searches on a quantity.
    • HAS

      public static final RestSearchParameterTypeEnum HAS
      _has parameter
    • SPECIAL

      public static final RestSearchParameterTypeEnum SPECIAL
      Code Value: number Search parameter SHALL be a number (a whole number, or a decimal).
  • Field Details

  • Method Details

    • 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

      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
    • getCode

      public String getCode()
      Returns the code associated with this enumerated value
    • getSystem

      public String getSystem()
      Returns the code system associated with this enumerated value
    • forCode

      public static RestSearchParameterTypeEnum forCode(String theCode)
      Returns the enumerated value associated with this code