org.fuzzydb.util.geo.GeoInformation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.fuzzydb.util Show documentation
Show all versions of org.fuzzydb.util Show documentation
Contains classes not specific to fuzzydb implementation which
could be used in any implementation of fuzzy matching, or as
general utility classes such as those in the geo package.
The newest version!
package org.fuzzydb.util.geo;
/**
* Interface implemented by objects that can provide geographical information
*
* @author Neale Upstone
*/
public interface GeoInformation {
String getCounty();
/**
* Latitude in degrees
*/
float getLatitude();
/**
* Longitude in degrees
*/
float getLongitude();
String getTown();
}