Class LocationParmVal
- java.lang.Object
-
- com.ibm.fhir.persistence.jdbc.dto.LocationParmVal
-
- All Implemented Interfaces:
ExtractedParameterValue
public class LocationParmVal extends Object implements ExtractedParameterValue
This class defines the Data Transfer Object representing a row in the X_LATLNG_VALUES tables.
-
-
Constructor Summary
Constructors Constructor Description LocationParmVal()
-
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 visitorString
getBase()
String
getName()
String
getResourceType()
Double
getValueLatitude()
Double
getValueLongitude()
void
setBase(String base)
void
setName(String name)
void
setResourceType(String resourceType)
void
setValueLatitude(Double valueLatitude)
void
setValueLongitude(Double valueLongitude)
-
-
-
Method Detail
-
setName
public void setName(String name)
- Specified by:
setName
in interfaceExtractedParameterValue
-
getName
public String getName()
- Specified by:
getName
in interfaceExtractedParameterValue
-
getValueLongitude
public Double getValueLongitude()
-
setValueLongitude
public void setValueLongitude(Double valueLongitude)
-
getValueLatitude
public Double getValueLatitude()
-
setValueLatitude
public void setValueLatitude(Double valueLatitude)
-
getResourceType
public String getResourceType()
- Specified by:
getResourceType
in interfaceExtractedParameterValue
-
setResourceType
public void setResourceType(String resourceType)
- Specified by:
setResourceType
in interfaceExtractedParameterValue
-
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 interfaceExtractedParameterValue
- Throws:
FHIRPersistenceException
-
getBase
public String getBase()
- Specified by:
getBase
in interfaceExtractedParameterValue
- Returns:
- the base
-
setBase
public void setBase(String base)
- Specified by:
setBase
in interfaceExtractedParameterValue
- Parameters:
base
- the base to set
-
-