Enum SearchParamTypeEnum

java.lang.Object
java.lang.Enum<SearchParamTypeEnum>
ca.uhn.fhir.model.dstu2.valueset.SearchParamTypeEnum
All Implemented Interfaces:
Serializable, Comparable<SearchParamTypeEnum>

  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Display: Composite
    Code Value: composite A composite search parameter that combines a search on two values together.
    Display: Date/DateTime
    Code Value: date Search parameter is on a date/time.
    Display: Number
    Code Value: number Search parameter SHALL be a number (a whole number, or a decimal).
    Display: Quantity
    Code Value: quantity A search parameter that searches on a quantity.
    Display: Reference
    Code Value: reference A reference to another resource.
    Display: String
    Code Value: string Search parameter is a simple string, like a name part.
    Display: Token
    Code Value: token Search parameter on a coded element or identifier.
    Display: URI
    Code Value: uri A search parameter that searches on a URI (RFC 3986).
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final ca.uhn.fhir.model.api.IValueSetEnumBinder<SearchParamTypeEnum>
    Converts codes to their respective enumerated values
    static final String
    Identifier for this Value Set:
    static final String
    Name for this Value Set: SearchParamType
  • Method Summary

    Modifier and Type
    Method
    Description
    forCode(String theCode)
    Returns the enumerated value associated with this code
    Returns the code associated with this enumerated value
    Returns the code system associated with this enumerated value
    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

    • NUMBER

      public static final SearchParamTypeEnum NUMBER
      Display: Number
      Code Value: number Search parameter SHALL be a number (a whole number, or a decimal).
    • DATE_DATETIME

      public static final SearchParamTypeEnum DATE_DATETIME
      Display: Date/DateTime
      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 SearchParamTypeEnum STRING
      Display: 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 SearchParamTypeEnum TOKEN
      Display: 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

      public static final SearchParamTypeEnum REFERENCE
      Display: Reference
      Code Value: reference A reference to another resource.
    • COMPOSITE

      public static final SearchParamTypeEnum COMPOSITE
      Display: Composite
      Code Value: composite A composite search parameter that combines a search on two values together.
    • QUANTITY

      public static final SearchParamTypeEnum QUANTITY
      Display: Quantity
      Code Value: quantity A search parameter that searches on a quantity.
    • URI

      public static final SearchParamTypeEnum URI
      Display: URI
      Code Value: uri A search parameter that searches on a URI (RFC 3986).
  • Field Details

  • Method Details

    • values

      public static SearchParamTypeEnum[] 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 SearchParamTypeEnum 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
    • 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 SearchParamTypeEnum forCode(String theCode)
      Returns the enumerated value associated with this code