All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fuzzydb.util.geo.GeoInformation Maven / Gradle / Ivy

Go to download

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();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy