Enum V3QueryParameterValue
- java.lang.Object
-
- java.lang.Enum<V3QueryParameterValue>
-
- org.hl7.fhir.r4.model.codesystems.V3QueryParameterValue
-
- All Implemented Interfaces:
Serializable,Comparable<V3QueryParameterValue>
public enum V3QueryParameterValue extends Enum<V3QueryParameterValue>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description _DISPENSEQUERYFILTERCODEDescription:Filter codes used to manage volume of dispenses returned by a parameter-based queries._ORDERFILTERCODEFilter codes used to manage types of orders being returned by a parameter-based query._PRESCRIPTIONDISPENSEFILTERCODEA "helper" vocabulary used to construct complex query filters based on how and whether a prescription has been dispensed._QUERYPARAMETERVALUEDescription:Indicates how result sets should be filtered based on whether they have associated issues.ALLDISPDescription:Returns all dispenses to date for a prescription.AOReturn all orders.CFilter to only include SubstanceAdministration orders which have no remaining quantity authorized to be dispensed.ISSFADescription:Result set should not be filtered based on the presence of issues.ISSFIDescription:Result set should be filtered to only include records with associated issues.ISSFUDescription:Result set should be filtered to only include records with associated unmanaged issues.LASTDISPDescription:Returns the most recent dispense for a prescription.NFilter to only include SubstanceAdministration orders which have no fulfilling supply events performed.NODISPDescription:Returns no dispense for a prescription.NULLadded to help the parsersONRReturn only those orders that do not have results.OWRReturn only those orders that have results.RFilter to only include SubstanceAdministration orders which have had at least one fulfilling supply event, but which still have outstanding quantity remaining to be authorized.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static V3QueryParameterValuefromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static V3QueryParameterValuevalueOf(String name)Returns the enum constant of this type with the specified name.static V3QueryParameterValue[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
_DISPENSEQUERYFILTERCODE
public static final V3QueryParameterValue _DISPENSEQUERYFILTERCODE
Description:Filter codes used to manage volume of dispenses returned by a parameter-based queries.
-
ALLDISP
public static final V3QueryParameterValue ALLDISP
Description:Returns all dispenses to date for a prescription.
-
LASTDISP
public static final V3QueryParameterValue LASTDISP
Description:Returns the most recent dispense for a prescription.
-
NODISP
public static final V3QueryParameterValue NODISP
Description:Returns no dispense for a prescription.
-
_ORDERFILTERCODE
public static final V3QueryParameterValue _ORDERFILTERCODE
Filter codes used to manage types of orders being returned by a parameter-based query.
-
AO
public static final V3QueryParameterValue AO
Return all orders.
-
ONR
public static final V3QueryParameterValue ONR
Return only those orders that do not have results.
-
OWR
public static final V3QueryParameterValue OWR
Return only those orders that have results.
-
_PRESCRIPTIONDISPENSEFILTERCODE
public static final V3QueryParameterValue _PRESCRIPTIONDISPENSEFILTERCODE
A "helper" vocabulary used to construct complex query filters based on how and whether a prescription has been dispensed.
-
C
public static final V3QueryParameterValue C
Filter to only include SubstanceAdministration orders which have no remaining quantity authorized to be dispensed.
-
N
public static final V3QueryParameterValue N
Filter to only include SubstanceAdministration orders which have no fulfilling supply events performed.
-
R
public static final V3QueryParameterValue R
Filter to only include SubstanceAdministration orders which have had at least one fulfilling supply event, but which still have outstanding quantity remaining to be authorized.
-
_QUERYPARAMETERVALUE
public static final V3QueryParameterValue _QUERYPARAMETERVALUE
Description:Indicates how result sets should be filtered based on whether they have associated issues.
-
ISSFA
public static final V3QueryParameterValue ISSFA
Description:Result set should not be filtered based on the presence of issues.
-
ISSFI
public static final V3QueryParameterValue ISSFI
Description:Result set should be filtered to only include records with associated issues.
-
ISSFU
public static final V3QueryParameterValue ISSFU
Description:Result set should be filtered to only include records with associated unmanaged issues.
-
NULL
public static final V3QueryParameterValue NULL
added to help the parsers
-
-
Method Detail
-
values
public static V3QueryParameterValue[] 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 (V3QueryParameterValue c : V3QueryParameterValue.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static V3QueryParameterValue 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 V3QueryParameterValue fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-