
Package ca.uhn.fhir.model.dstu2.valueset
Enum SearchParamTypeEnum
- All Implemented Interfaces:
Serializable
,Comparable<SearchParamTypeEnum>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDisplay: 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
FieldsModifier and TypeFieldDescriptionstatic final ca.uhn.fhir.model.api.IValueSetEnumBinder<SearchParamTypeEnum>
Converts codes to their respective enumerated valuesstatic final String
Identifier for this Value Set:static final String
Name for this Value Set: SearchParamType -
Method Summary
Modifier and TypeMethodDescriptionstatic SearchParamTypeEnum
Returns the enumerated value associated with this codegetCode()
Returns the code associated with this enumerated valueReturns the code system associated with this enumerated valuestatic SearchParamTypeEnum
Returns the enum constant of this type with the specified name.static SearchParamTypeEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NUMBER
Display: Number
Code Value: number Search parameter SHALL be a number (a whole number, or a decimal). -
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
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
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
Display: Reference
Code Value: reference A reference to another resource. -
COMPOSITE
Display: Composite
Code Value: composite A composite search parameter that combines a search on two values together. -
QUANTITY
Display: Quantity
Code Value: quantity A search parameter that searches on a quantity. -
URI
Display: URI
Code Value: uri A search parameter that searches on a URI (RFC 3986).
-
-
Field Details
-
VALUESET_IDENTIFIER
Identifier for this Value Set:- See Also:
-
VALUESET_NAME
Name for this Value Set: SearchParamType- See Also:
-
VALUESET_BINDER
Converts codes to their respective enumerated values
-
-
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 nameNullPointerException
- if the argument is null
-
getCode
Returns the code associated with this enumerated value -
getSystem
Returns the code system associated with this enumerated value -
forCode
Returns the enumerated value associated with this code
-