Package ca.uhn.fhir.rest.param
Enum UriParamQualifierEnum
- All Implemented Interfaces:
Serializable
,Comparable<UriParamQualifierEnum>
Qualifiers for
UriParam
-
Enum Constant Summary
Enum ConstantDescriptionThe 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.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.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. -
Method Summary
Modifier and TypeMethodDescriptionstatic UriParamQualifierEnum
getValue()
Returns the qualifier value, e.g.static UriParamQualifierEnum
Returns the enum constant of this type with the specified name.static UriParamQualifierEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
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
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
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
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
-
getValue
Returns the qualifier value, e.g.:below
-
forValue
-