
Package ca.uhn.fhir.rest.param
Enum UriParamQualifierEnum
- java.lang.Object
-
- java.lang.Enum<UriParamQualifierEnum>
-
- ca.uhn.fhir.rest.param.UriParamQualifierEnum
-
- All Implemented Interfaces:
Serializable
,Comparable<UriParamQualifierEnum>
public enum UriParamQualifierEnum extends Enum<UriParamQualifierEnum>
Qualifiers forUriParam
-
-
Enum Constant Summary
Enum Constants Enum Constant Description 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.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.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UriParamQualifierEnum
forValue(String theValue)
String
getValue()
Returns the qualifier value, e.g.static UriParamQualifierEnum
valueOf(String name)
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 Detail
-
ABOVE
public static final UriParamQualifierEnum 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
public static final UriParamQualifierEnum 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
-
-
Method Detail
-
values
public static UriParamQualifierEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (UriParamQualifierEnum c : UriParamQualifierEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UriParamQualifierEnum 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 nameNullPointerException
- if the argument is null
-
forValue
public static UriParamQualifierEnum forValue(String theValue)
-
-