Class NumberParameter
- java.lang.Object
-
- com.ibm.fhir.cql.engine.searchparam.BaseQueryParameter<NumberParameter>
-
- com.ibm.fhir.cql.engine.searchparam.NumberParameter
-
- All Implemented Interfaces:
IQueryParameter
- Direct Known Subclasses:
QuantityParameter
public class NumberParameter extends BaseQueryParameter<NumberParameter>
-
-
Constructor Summary
Constructors Constructor Description NumberParameter()
NumberParameter(boolean isMissing)
NumberParameter(long value)
NumberParameter(SearchConstants.Prefix valuePrefix, long value)
NumberParameter(SearchConstants.Prefix valuePrefix, BigDecimal value)
NumberParameter(BigDecimal value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getParameterValue()
BigDecimal
getValue()
SearchConstants.Prefix
getValuePrefix()
NumberParameter
setValue(long value)
void
setValue(BigDecimal value)
NumberParameter
setValuePrefix(SearchConstants.Prefix valuePrefix)
-
Methods inherited from class com.ibm.fhir.cql.engine.searchparam.BaseQueryParameter
equals, getMissing, getModifier, getName, getSearchParameter, hashCode, setMissing, setModifier, setName, setSearchParameter, toString
-
-
-
-
Constructor Detail
-
NumberParameter
public NumberParameter()
-
NumberParameter
public NumberParameter(boolean isMissing)
-
NumberParameter
public NumberParameter(long value)
-
NumberParameter
public NumberParameter(BigDecimal value)
-
NumberParameter
public NumberParameter(SearchConstants.Prefix valuePrefix, long value)
-
NumberParameter
public NumberParameter(SearchConstants.Prefix valuePrefix, BigDecimal value)
-
-
Method Detail
-
getValuePrefix
public SearchConstants.Prefix getValuePrefix()
-
setValuePrefix
public NumberParameter setValuePrefix(SearchConstants.Prefix valuePrefix)
-
getValue
public BigDecimal getValue()
-
setValue
public NumberParameter setValue(long value)
-
setValue
public void setValue(BigDecimal value)
-
getParameterValue
public String getParameterValue()
-
-