package jfireeagle;
/**
*
* Where On Earth Id (WOEID)
*
* @see http://geobloggers.com/2008/05/12/yahoo-woe-where-on-earth-that-is-ids/
*
*/
public class WhereOnEarthId
implements java.io.Serializable
{
private String value;
private boolean exactMatch = false;
public WhereOnEarthId(String s)
{
this.value = s;
}
public String getValue()
{
return value;
}
public String toString()
{
return this.getValue();
}
public boolean isExactMatch()
{
return exactMatch;
}
public void setExactMatch(boolean b)
{
this.exactMatch = b;
}
}
|