Class LocationParmVal
- java.lang.Object
-
- org.linuxforhealth.fhir.persistence.jdbc.dto.ExtractedParameterValue
-
- org.linuxforhealth.fhir.persistence.jdbc.dto.LocationParmVal
-
- All Implemented Interfaces:
java.lang.Comparable<ExtractedParameterValue>
public class LocationParmVal extends ExtractedParameterValue
This class defines the Data Transfer Object representing a row in the X_LATLNG_VALUES tables.
-
-
Constructor Summary
Constructors Constructor Description LocationParmVal()
Public constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(ExtractedParameterValueVisitor visitor)
We know our type, so we can call the correct method on the visitorprotected int
compareToInner(ExtractedParameterValue o)
Additional extracted parameter value comparisions when the same class.java.lang.Double
getValueLatitude()
java.lang.Double
getValueLongitude()
void
setValueLatitude(java.lang.Double valueLatitude)
void
setValueLongitude(java.lang.Double valueLongitude)
-
Methods inherited from class org.linuxforhealth.fhir.persistence.jdbc.dto.ExtractedParameterValue
compareTo, getCompartments, getName, getResourceType, getUrl, getVersion, isCompartmentInclusionParam, isForStoring, isWholeSystem, setCompartments, setForStoring, setName, setResourceType, setUrl, setVersion, setWholeSystem
-
-
-
-
Method Detail
-
getValueLatitude
public java.lang.Double getValueLatitude()
-
setValueLatitude
public void setValueLatitude(java.lang.Double valueLatitude)
-
getValueLongitude
public java.lang.Double getValueLongitude()
-
setValueLongitude
public void setValueLongitude(java.lang.Double valueLongitude)
-
accept
public void accept(ExtractedParameterValueVisitor visitor) throws FHIRPersistenceException
We know our type, so we can call the correct method on the visitor- Specified by:
accept
in classExtractedParameterValue
- Throws:
FHIRPersistenceException
-
compareToInner
protected int compareToInner(ExtractedParameterValue o)
Description copied from class:ExtractedParameterValue
Additional extracted parameter value comparisions when the same class.- Specified by:
compareToInner
in classExtractedParameterValue
- Parameters:
o
- an extracted parameter value to compare to- Returns:
- a negative integer, zero, or a positive integer as this extracted parameter value is less than, equal to, or greater than the specified extracted parameter value.
-
-