Package org.hl7.fhir.r5.model
Enum Enumerations.SubscriptionSearchModifier
- java.lang.Object
-
- java.lang.Enum<Enumerations.SubscriptionSearchModifier>
-
- org.hl7.fhir.r5.model.Enumerations.SubscriptionSearchModifier
-
- All Implemented Interfaces:
Serializable,Comparable<Enumerations.SubscriptionSearchModifier>
- Enclosing class:
- Enumerations
public static enum Enumerations.SubscriptionSearchModifier extends Enum<Enumerations.SubscriptionSearchModifier>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABOVEThe 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.APThe value for the parameter in the resource is approximately the same to the provided value.BELOWThe search parameter is a concept with the form [system]|[code], and the search parameter tests whether the coding in a resource is subsumed by the specified search code.EBThe value for the parameter in the resource ends before the provided value.EQThe value for the parameter in the resource is equal to the provided value.EQUALUsed to match a value according to FHIR Search rules (e.g., Patient/123, Encounter/2002).GEThe value for the parameter in the resource is greater or equal to the provided value.GTThe value for the parameter in the resource is greater than the provided value.INThe search parameter is a member of a Group or List, or the search parameter is a URI (relative or absolute) that identifies a value set, and the search parameter tests whether the value is present in the specified Group, List, or Value Set.LEThe value for the parameter in the resource is less or equal to the provided value.LTThe value for the parameter in the resource is less than the provided value.NEThe value for the parameter in the resource is not equal to the provided value.NOTINThe search parameter is a member of a Group or List, or the search parameter is a URI (relative or absolute) that identifies a value set, and the search parameter tests whether the value is NOT present in the specified Group, List, or Value Set.NULLadded to help the parsersOFTYPEThe search parameter has the format system|code|value, where the system and code refer to a Identifier.type.coding.system and .code, and match if any of the type codes match.SAThe value for the parameter in the resource starts after the provided value.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Enumerations.SubscriptionSearchModifierfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static Enumerations.SubscriptionSearchModifiervalueOf(String name)Returns the enum constant of this type with the specified name.static Enumerations.SubscriptionSearchModifier[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQUAL
public static final Enumerations.SubscriptionSearchModifier EQUAL
Used to match a value according to FHIR Search rules (e.g., Patient/123, Encounter/2002).
-
EQ
public static final Enumerations.SubscriptionSearchModifier EQ
The value for the parameter in the resource is equal to the provided value.
-
NE
public static final Enumerations.SubscriptionSearchModifier NE
The value for the parameter in the resource is not equal to the provided value.
-
GT
public static final Enumerations.SubscriptionSearchModifier GT
The value for the parameter in the resource is greater than the provided value.
-
LT
public static final Enumerations.SubscriptionSearchModifier LT
The value for the parameter in the resource is less than the provided value.
-
GE
public static final Enumerations.SubscriptionSearchModifier GE
The value for the parameter in the resource is greater or equal to the provided value.
-
LE
public static final Enumerations.SubscriptionSearchModifier LE
The value for the parameter in the resource is less or equal to the provided value.
-
SA
public static final Enumerations.SubscriptionSearchModifier SA
The value for the parameter in the resource starts after the provided value.
-
EB
public static final Enumerations.SubscriptionSearchModifier EB
The value for the parameter in the resource ends before the provided value.
-
AP
public static final Enumerations.SubscriptionSearchModifier AP
The value for the parameter in the resource is approximately the same to the provided value. Note that the recommended value for the approximation is 10% of the stated value (or for a date, 10% of the gap between now and the date), but systems may choose other values where appropriate.
-
ABOVE
public static final Enumerations.SubscriptionSearchModifier 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
public static final Enumerations.SubscriptionSearchModifier BELOW
The search parameter is a concept with the form [system]|[code], and the search parameter tests whether the coding in a resource is subsumed by the specified search code.
-
IN
public static final Enumerations.SubscriptionSearchModifier IN
The search parameter is a member of a Group or List, or the search parameter is a URI (relative or absolute) that identifies a value set, and the search parameter tests whether the value is present in the specified Group, List, or Value Set.
-
NOTIN
public static final Enumerations.SubscriptionSearchModifier NOTIN
The search parameter is a member of a Group or List, or the search parameter is a URI (relative or absolute) that identifies a value set, and the search parameter tests whether the value is NOT present in the specified Group, List, or Value Set.
-
OFTYPE
public static final Enumerations.SubscriptionSearchModifier OFTYPE
The search parameter has the format system|code|value, where the system and code refer to a Identifier.type.coding.system and .code, and match if any of the type codes match. All 3 parts must be present.
-
NULL
public static final Enumerations.SubscriptionSearchModifier NULL
added to help the parsers
-
-
Method Detail
-
values
public static Enumerations.SubscriptionSearchModifier[] 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 (Enumerations.SubscriptionSearchModifier c : Enumerations.SubscriptionSearchModifier.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Enumerations.SubscriptionSearchModifier 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
-
fromCode
public static Enumerations.SubscriptionSearchModifier fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-