Class GeocoderResult
- java.lang.Object
-
- org.apache.camel.quarkus.component.geocoder.it.GeocoderResult
-
public class GeocoderResult extends Object
-
-
Constructor Summary
Constructors Constructor Description GeocoderResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAddress()StringgetCity()CountrygetCountry()StringgetLat()StringgetLatLng()StringgetLng()StringgetPostalCode()RegiongetRegion()org.apache.camel.component.geocoder.GeocoderStatusgetStatus()GeocoderResultwithAddress(String address)GeocoderResultwithCity(String city)GeocoderResultwithCountry(String shortCode, String longCode)GeocoderResultwithLat(String lat)GeocoderResultwithLatLng(String latLng)GeocoderResultwithLng(String lng)GeocoderResultwithPostalCode(String postalCode)GeocoderResultwithRegion(String code, String name)GeocoderResultwithStatus(org.apache.camel.component.geocoder.GeocoderStatus status)
-
-
-
Method Detail
-
withLat
public GeocoderResult withLat(String lat)
-
withLng
public GeocoderResult withLng(String lng)
-
withLatLng
public GeocoderResult withLatLng(String latLng)
-
withAddress
public GeocoderResult withAddress(String address)
-
withStatus
public GeocoderResult withStatus(org.apache.camel.component.geocoder.GeocoderStatus status)
-
withCountry
public GeocoderResult withCountry(String shortCode, String longCode)
-
withCity
public GeocoderResult withCity(String city)
-
withPostalCode
public GeocoderResult withPostalCode(String postalCode)
-
withRegion
public GeocoderResult withRegion(String code, String name)
-
getStatus
public org.apache.camel.component.geocoder.GeocoderStatus getStatus()
-
getLat
public String getLat()
-
getLng
public String getLng()
-
getLatLng
public String getLatLng()
-
getAddress
public String getAddress()
-
getCountry
public Country getCountry()
-
getCity
public String getCity()
-
getPostalCode
public String getPostalCode()
-
getRegion
public Region getRegion()
-
-