Package ca.uhn.fhir.rest.api
Enum RestSearchParameterTypeEnum
- All Implemented Interfaces:
Serializable
,Comparable<RestSearchParameterTypeEnum>
-
Enum Constant Summary
Enum ConstantDescriptionCode Value: composite A composite search parameter that combines a search on two values together.Code Value: date Search parameter is on a date/time._has parameterCode Value: number Search parameter SHALL be a number (a whole number, or a decimal).Code Value: quantity A search parameter that searches on a quantity.Code Value: reference A reference to another resource.Code Value: number Search parameter SHALL be a number (a whole number, or a decimal).Code Value: string Search parameter is a simple string, like a name part.Code Value: token Search parameter on a coded element or identifier.Code Value: quantity A search parameter that searches on a quantity. -
Field Summary
Modifier and TypeFieldDescriptionstatic final IValueSetEnumBinder
<RestSearchParameterTypeEnum> Converts codes to their respective enumerated valuesstatic final String
Identifier for this Value Set: http://hl7.org/fhir/vs/search-param-typestatic final String
Name for this Value Set: SearchParamType -
Method Summary
Modifier and TypeMethodDescriptionstatic RestSearchParameterTypeEnum
Returns the enumerated value associated with this codegetCode()
Returns the code associated with this enumerated valueReturns the code system associated with this enumerated valuestatic RestSearchParameterTypeEnum
Returns the enum constant of this type with the specified name.static RestSearchParameterTypeEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NUMBER
Code Value: number Search parameter SHALL be a number (a whole number, or a decimal). -
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
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
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
Code Value: quantity A search parameter that searches on a quantity. -
HAS
_has parameter -
SPECIAL
Code Value: number Search parameter SHALL be a number (a whole number, or a decimal).
-
-
Field Details
-
VALUESET_IDENTIFIER
Identifier for this Value Set: http://hl7.org/fhir/vs/search-param-type- 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
-