Class DateParameter
- java.lang.Object
-
- org.linuxforhealth.fhir.persistence.index.SearchParameterValue
-
- org.linuxforhealth.fhir.persistence.index.DateParameter
-
public class DateParameter extends SearchParameterValue
A date search parameter value
-
-
Constructor Summary
Constructors Constructor Description DateParameter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.time.InstantgetValueDateEnd()java.time.InstantgetValueDateStart()inthashCode()voidsetValueDateEnd(java.time.Instant valueDateEnd)voidsetValueDateStart(java.time.Instant valueDateStart)java.lang.StringtoString()-
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:
toStringin classjava.lang.Object
-
getValueDateStart
public java.time.Instant getValueDateStart()
- Returns:
- the valueDateStart
-
setValueDateStart
public void setValueDateStart(java.time.Instant valueDateStart)
- Parameters:
valueDateStart- the valueDateStart to set
-
getValueDateEnd
public java.time.Instant getValueDateEnd()
- Returns:
- the valueDateEnd
-
setValueDateEnd
public void setValueDateEnd(java.time.Instant valueDateEnd)
- Parameters:
valueDateEnd- the valueDateEnd to set
-
hashCode
public int hashCode()
- Overrides:
hashCodein classSearchParameterValue
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classSearchParameterValue
-
-