Class LocationParameter
- java.lang.Object
-
- org.linuxforhealth.fhir.persistence.index.SearchParameterValue
-
- org.linuxforhealth.fhir.persistence.index.LocationParameter
-
public class LocationParameter extends SearchParameterValue
A LatLng location search parameter
-
-
Constructor Summary
Constructors Constructor Description LocationParameter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.lang.Double
getValueLatitude()
java.lang.Double
getValueLongitude()
int
hashCode()
void
setValueLatitude(java.lang.Double valueLatitude)
void
setValueLongitude(java.lang.Double valueLongitude)
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
-
getValueLatitude
public java.lang.Double getValueLatitude()
- Returns:
- the valueLatitude
-
setValueLatitude
public void setValueLatitude(java.lang.Double valueLatitude)
- Parameters:
valueLatitude
- the valueLatitude to set
-
getValueLongitude
public java.lang.Double getValueLongitude()
- Returns:
- the valueLongitude
-
setValueLongitude
public void setValueLongitude(java.lang.Double valueLongitude)
- Parameters:
valueLongitude
- the valueLongitude to set
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classSearchParameterValue
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classSearchParameterValue
-
-