public interface AddressesService extends de.alpharogroup.db.service.api.BusinessService<de.alpharogroup.address.book.entities.Addresses,Integer>
AddressesService.| Modifier and Type | Method and Description |
|---|---|
de.alpharogroup.address.book.entities.Addresses |
contains(String latitude,
String longitude)
Checks if the given latitude and longitude is contained in the database.
|
de.alpharogroup.address.book.entities.Addresses |
contains(de.alpharogroup.address.book.entities.Zipcodes zipcode)
Checks if the given
Zipcodes is contained in the database and return the first
occurence. |
de.alpharogroup.address.book.entities.Addresses |
createAddress(String street,
String streetnumber,
String addressComment,
String zipcode,
String city,
String federalstate)
Creates the address.
|
de.alpharogroup.address.book.entities.Addresses |
createAddress(String street,
String streetnumber,
String addressComment,
String zipcode,
String city,
String federalstate,
String geohash,
BigDecimal latitude,
BigDecimal longitude)
Creates the address.
|
List<de.alpharogroup.address.book.entities.Addresses> |
find(de.alpharogroup.address.book.entities.Countries country,
String zipcode)
Finds a list of
Addresses from the given arguments. |
List<de.alpharogroup.address.book.entities.Addresses> |
find(de.alpharogroup.address.book.entities.Countries country,
String zipcode,
String city)
Finds a list of
Addresses from the given arguments. |
List<de.alpharogroup.address.book.entities.Addresses> |
find(String geohash)
Finds a list of
Addresses from the given arguments. |
List<de.alpharogroup.address.book.entities.Addresses> |
find(String latitude,
String longitude)
Finds a list of
Addresses from the given latitude and longitude. |
List<de.alpharogroup.address.book.entities.Addresses> |
find(String geohash,
String latitude,
String longitude)
Finds a list of
Addresses from the given arguments. |
List<de.alpharogroup.address.book.entities.Addresses> |
find(de.alpharogroup.address.book.entities.Zipcodes zipcode)
Finds a list of
Addresses from the given Zipcodes object. |
List<de.alpharogroup.address.book.entities.Addresses> |
findAddressesWithSameCityname(de.alpharogroup.address.book.entities.Countries country,
String city)
Finds a list of
Addresses that have the same cityname. |
List<de.alpharogroup.address.book.entities.Addresses> |
findAddressesWithSameZipcode(de.alpharogroup.address.book.entities.Countries country,
String zipcode)
Finds a list of
Addresses that have the same zipcode. |
List<de.alpharogroup.address.book.entities.Addresses> |
findAll(de.alpharogroup.address.book.entities.Countries country)
Find all addresses with the given country.
|
List<de.alpharogroup.address.book.entities.Zipcodes> |
findAllAddressesWithCountry(de.alpharogroup.address.book.entities.Countries county)
Find all
Zipcodes with the given country. |
de.alpharogroup.address.book.entities.Addresses |
findFirst(de.alpharogroup.address.book.entities.Countries country,
String zipcode)
Finds the first
Addresses from the given arguments. |
List<de.alpharogroup.address.book.entities.Addresses> |
findFirstAndSecondRingNeighbourhood(String geohash)
Finds a list of
Addresses from the first and second ring neighbourhood areas of the
given geohash. |
List<de.alpharogroup.address.book.entities.Addresses> |
findFirstRingNeighbourhood(String geohash)
Finds a list of
Addresses from the first ring neighbourhood areas of the given
geohash. |
List<de.alpharogroup.address.book.entities.Addresses> |
findGeohashIsNull()
Find all addresses that have a geohash value that is null.
|
List<de.alpharogroup.address.book.entities.Addresses> |
findInvalidAddresses(de.alpharogroup.address.book.entities.Countries country,
String geohash)
Find invalid
Addresses objects from the given arguments. |
List<de.alpharogroup.address.book.entities.Addresses> |
findInvalidAddresses(de.alpharogroup.address.book.entities.Countries country,
String geohash,
boolean not)
Find invalid
Addresses objects from the given arguments. |
List<de.alpharogroup.address.book.entities.Addresses> |
findNeighbourhood(String geohash)
Finds a list of
Addresses from the neighbourhood areas of the given geohash. |
de.alpharogroup.address.book.entities.Addresses contains(String latitude, String longitude)
latitude - the latitudelongitude - the longitudede.alpharogroup.address.book.entities.Addresses contains(de.alpharogroup.address.book.entities.Zipcodes zipcode)
Zipcodes is contained in the database and return the first
occurence.zipcode - the zipcodeAddressesde.alpharogroup.address.book.entities.Addresses createAddress(String street, String streetnumber, String addressComment, String zipcode, String city, String federalstate)
street - the streetstreetnumber - the streetnumberaddressComment - the address commentzipcode - the zipcodecity - the cityfederalstate - the federalstatede.alpharogroup.address.book.entities.Addresses createAddress(String street, String streetnumber, String addressComment, String zipcode, String city, String federalstate, String geohash, BigDecimal latitude, BigDecimal longitude)
street - the streetstreetnumber - the streetnumberaddressComment - the address commentzipcode - the zipcodecity - the cityfederalstate - the federalstategeohash - the geohashlatitude - the latitudelongitude - the longitudeList<de.alpharogroup.address.book.entities.Addresses> find(de.alpharogroup.address.book.entities.Countries country, String zipcode)
Addresses from the given arguments.country - the countryzipcode - the zipcodeAddressesList<de.alpharogroup.address.book.entities.Addresses> find(de.alpharogroup.address.book.entities.Countries country, String zipcode, String city)
Addresses from the given arguments.country - the countryzipcode - the zipcodecity - the cityAddressesList<de.alpharogroup.address.book.entities.Addresses> find(String geohash)
Addresses from the given arguments.geohash - the geohashAddressesList<de.alpharogroup.address.book.entities.Addresses> find(String latitude, String longitude)
Addresses from the given latitude and longitude.latitude - the latitudelongitude - the longitudeAddressesList<de.alpharogroup.address.book.entities.Addresses> find(String geohash, String latitude, String longitude)
Addresses from the given arguments.geohash - the geohashlatitude - the latitudelongitude - the longitudeAddressesList<de.alpharogroup.address.book.entities.Addresses> find(de.alpharogroup.address.book.entities.Zipcodes zipcode)
Addresses from the given Zipcodes object.zipcode - the zipcodeAddressesList<de.alpharogroup.address.book.entities.Addresses> findAddressesWithSameCityname(de.alpharogroup.address.book.entities.Countries country, String city)
Addresses that have the same cityname.country - the countrycity - the cityAddressesList<de.alpharogroup.address.book.entities.Addresses> findAddressesWithSameZipcode(de.alpharogroup.address.book.entities.Countries country, String zipcode)
Addresses that have the same zipcode.country - the countryzipcode - the zipcodeAddressesList<de.alpharogroup.address.book.entities.Addresses> findAll(de.alpharogroup.address.book.entities.Countries country)
country - the countryList<de.alpharogroup.address.book.entities.Zipcodes> findAllAddressesWithCountry(de.alpharogroup.address.book.entities.Countries county)
Zipcodes with the given country.county - the countyZipcodesde.alpharogroup.address.book.entities.Addresses findFirst(de.alpharogroup.address.book.entities.Countries country,
String zipcode)
Addresses from the given arguments.country - the countryzipcode - the zipcodeAddressesList<de.alpharogroup.address.book.entities.Addresses> findFirstAndSecondRingNeighbourhood(String geohash)
Addresses from the first and second ring neighbourhood areas of the
given geohash.geohash - the geohashAddressesList<de.alpharogroup.address.book.entities.Addresses> findFirstRingNeighbourhood(String geohash)
Addresses from the first ring neighbourhood areas of the given
geohash.geohash - the geohashAddressesList<de.alpharogroup.address.book.entities.Addresses> findGeohashIsNull()
AddressesList<de.alpharogroup.address.book.entities.Addresses> findInvalidAddresses(de.alpharogroup.address.book.entities.Countries country, String geohash)
Addresses objects from the given arguments.country - the countrygeohash - the geohashList<de.alpharogroup.address.book.entities.Addresses> findInvalidAddresses(de.alpharogroup.address.book.entities.Countries country, String geohash, boolean not)
Addresses objects from the given arguments.country - the countrygeohash - the geohashnot - the flag that indicates a negation from the geohash valueAddressesCopyright © 2015–2017 Alpha Ro Group UG (haftungsbeschrÀngt). All rights reserved.