Class NumberParameter
- java.lang.Object
-
- org.linuxforhealth.fhir.persistence.index.SearchParameterValue
-
- org.linuxforhealth.fhir.persistence.index.NumberParameter
-
public class NumberParameter extends SearchParameterValue
A number search parameter
-
-
Constructor Summary
Constructors Constructor Description NumberParameter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.math.BigDecimal
getHighValue()
java.math.BigDecimal
getLowValue()
java.math.BigDecimal
getValue()
int
hashCode()
void
setHighValue(java.math.BigDecimal highValue)
void
setLowValue(java.math.BigDecimal lowValue)
void
setValue(java.math.BigDecimal value)
java.lang.String
toString()
-
Methods inherited from class org.linuxforhealth.fhir.persistence.index.SearchParameterValue
addDescription, getCompositeId, getName, getWholeSystem, isSystemParam, setCompositeId, setName, setWholeSystem
-
-
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
getValue
public java.math.BigDecimal getValue()
- Returns:
- the value
-
setValue
public void setValue(java.math.BigDecimal value)
- Parameters:
value
- the value to set
-
getLowValue
public java.math.BigDecimal getLowValue()
- Returns:
- the lowValue
-
setLowValue
public void setLowValue(java.math.BigDecimal lowValue)
- Parameters:
lowValue
- the lowValue to set
-
getHighValue
public java.math.BigDecimal getHighValue()
- Returns:
- the highValue
-
setHighValue
public void setHighValue(java.math.BigDecimal highValue)
- Parameters:
highValue
- the highValue to set
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classSearchParameterValue
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classSearchParameterValue
-
-