
Package ca.uhn.fhir.model.dstu2.valueset
Enum Class SearchModifierCodeEnum
- All Implemented Interfaces:
- Serializable,- Comparable<SearchModifierCodeEnum>,- Constable
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionDisplay: Above
 Code Value: above The search parameter tests whether the value in a resource subsumes the specified value (is-a, or hierarchical relationships).Display: Below
 Code Value: below The search parameter tests whether the value in a resource is subsumed by the specified value (is-a, or hierarchical relationships).Display: Contains
 Code Value: contains The search parameter returns resources that include the supplied parameter value anywhere within the field being searched.Display: Exact
 Code Value: exact The search parameter returns resources that have a value that exactly matches the supplied parameter (the whole string, including casing and accents).Display: In
 Code Value: in The search parameter is a URI (relative or absolute) that identifies a value set, and the search parameter tests whether the coding is in the specified value set.Display: Missing
 Code Value: missing The search parameter returns resources that have a value or not.Display: Not
 Code Value: not The search parameter returns resources that do not contain a match .Display: Not In
 Code Value: not-in The search parameter is a URI (relative or absolute) that identifies a value set, and the search parameter tests whether the coding is not in the specified value set.Display: Text
 Code Value: text The search parameter is processed as a string that searches text associated with the code/value - either CodeableConcept.text, Coding.display, or Identifier.type.text.Display: Type
 Code Value: type The search parameter only applies to the Resource Type specified as a modifier (e.g. the modifier is not actually :type, but :Patient etc.).
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final ca.uhn.fhir.model.api.IValueSetEnumBinder<SearchModifierCodeEnum> Converts codes to their respective enumerated valuesstatic final StringIdentifier for this Value Set:static final StringName for this Value Set: SearchModifierCode
- 
Method SummaryModifier and TypeMethodDescriptionstatic SearchModifierCodeEnumReturns the enumerated value associated with this codegetCode()Returns the code associated with this enumerated valueReturns the code system associated with this enumerated valuestatic SearchModifierCodeEnumReturns the enum constant of this class with the specified name.static SearchModifierCodeEnum[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
MISSINGDisplay: Missing
 Code Value: missing The search parameter returns resources that have a value or not.
- 
EXACTDisplay: Exact
 Code Value: exact The search parameter returns resources that have a value that exactly matches the supplied parameter (the whole string, including casing and accents).
- 
CONTAINSDisplay: Contains
 Code Value: contains The search parameter returns resources that include the supplied parameter value anywhere within the field being searched.
- 
NOTDisplay: Not
 Code Value: not The search parameter returns resources that do not contain a match .
- 
TEXTDisplay: Text
 Code Value: text The search parameter is processed as a string that searches text associated with the code/value - either CodeableConcept.text, Coding.display, or Identifier.type.text.
- 
INDisplay: In
 Code Value: in The search parameter is a URI (relative or absolute) that identifies a value set, and the search parameter tests whether the coding is in the specified value set.
- 
NOT_INDisplay: Not In
 Code Value: not-in The search parameter is a URI (relative or absolute) that identifies a value set, and the search parameter tests whether the coding is not in the specified value set.
- 
BELOWDisplay: Below
 Code Value: below The search parameter tests whether the value in a resource is subsumed by the specified value (is-a, or hierarchical relationships).
- 
ABOVEDisplay: Above
 Code Value: above The search parameter tests whether the value in a resource subsumes the specified value (is-a, or hierarchical relationships).
- 
TYPEDisplay: Type
 Code Value: type The search parameter only applies to the Resource Type specified as a modifier (e.g. the modifier is not actually :type, but :Patient etc.).
 
- 
- 
Field Details- 
VALUESET_IDENTIFIERIdentifier for this Value Set:- See Also:
 
- 
VALUESET_NAMEName for this Value Set: SearchModifierCode- See Also:
 
- 
VALUESET_BINDERpublic static final ca.uhn.fhir.model.api.IValueSetEnumBinder<SearchModifierCodeEnum> VALUESET_BINDERConverts codes to their respective enumerated values
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
 
- 
valueOfReturns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
- NullPointerException- if the argument is null
 
- 
getCodeReturns the code associated with this enumerated value
- 
getSystemReturns the code system associated with this enumerated value
- 
forCodeReturns the enumerated value associated with this code
 
-