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

prerna.om.GeoLocation Maven / Gradle / Ivy

The newest version!
package prerna.om;

public class GeoLocation 
{
	// has an address
	// city
	// state
	// country
	// latitude
	// longitude
	// places_id if there is one
	
	String address = null;
	String city = null;
	String county = null;
	String state = null;
	String postalCode = null;
	String country = null;
	
	float latitude = 0;
	float longitude = 0;
	public String getAddress() {
		return address;
	}
	public void setAddress(String address) {
		this.address = address;
	}
	public String getCity() {
		return city;
	}
	public void setCity(String city) {
		this.city = city;
	}
	public String getState() {
		return state;
	}
	public void setState(String state) {
		this.state = state;
	}
	public String getPostalCode() {
		return postalCode;
	}
	public void setPostalCode(String postalCode) {
		this.postalCode = postalCode;
	}
	public String getCountry() {
		return country;
	}
	public void setCountry(String country) {
		this.country = country;
	}
	public float getLatitude() {
		return latitude;
	}
	public void setLatitude(float latitude) {
		this.latitude = latitude;
	}
	public float getLongitude() {
		return longitude;
	}
	public void setLongitude(float longitude) {
		this.longitude = longitude;
	}
	
	public void setCounty(String county)
	{
		this.county = county;
	}

	public String getCounty()
	{
		return this.county;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy