![JAR search and dependency download from the Maven repository](/logo.png)
twitter4jads.internal.json.LocationJSONImpl Maven / Gradle / Ivy
The newest version!
package twitter4jads.internal.json;
import twitter4jads.conf.Configuration;
import twitter4jads.internal.http.HttpResponse;
import twitter4jads.internal.models4j.Location;
import twitter4jads.internal.org.json.JSONArray;
import twitter4jads.internal.org.json.JSONException;
import twitter4jads.internal.org.json.JSONObject;
import twitter4jads.internal.models4j.ResponseList;
import twitter4jads.internal.models4j.TwitterException;
/**
*
*/
public final class LocationJSONImpl extends TwitterResponseImpl implements Location {
private final int woeid;
private final String countryName;
private final String countryCode;
private final String placeName;
private final int placeCode;
private final String name;
private final String url;
private static final long serialVersionUID = 7095092358530897222L;
public LocationJSONImpl(JSONObject location) throws TwitterException {
super(location);
try {
woeid = z_T4JInternalParseUtil.getInt("woeid", location);
countryName = z_T4JInternalParseUtil.getUnescapedString("country", location);
countryCode = z_T4JInternalParseUtil.getRawString("countryCode", location);
if (!location.isNull("placeType")) {
JSONObject placeJSON = location.getJSONObject("placeType");
placeName = z_T4JInternalParseUtil.getUnescapedString("name", placeJSON);
placeCode = z_T4JInternalParseUtil.getInt("code", placeJSON);
} else {
placeName = null;
placeCode = -1;
}
name = z_T4JInternalParseUtil.getUnescapedString("name", location);
url = z_T4JInternalParseUtil.getUnescapedString("url", location);
} catch (JSONException jsone) {
throw new TwitterException(jsone);
}
}
/*package*/
static ResponseList createLocationList(HttpResponse res, Configuration conf) throws TwitterException {
if (conf.isJSONStoreEnabled()) {
DataObjectFactoryUtil.clearThreadLocalMap();
}
return createLocationList(res.asJSONArray(), conf.isJSONStoreEnabled());
}
/*package*/
static ResponseList createLocationList(JSONArray list, boolean storeJSON) throws TwitterException {
try {
int size = list.length();
ResponseList locations =
new ResponseListImpl(size, null);
for (int i = 0; i < size; i++) {
JSONObject json = list.getJSONObject(i);
Location location = new LocationJSONImpl(json);
locations.add(location);
if (storeJSON) {
DataObjectFactoryUtil.registerJSONObject(location, json);
}
}
if (storeJSON) {
DataObjectFactoryUtil.registerJSONObject(locations, list);
}
return locations;
} catch (JSONException jsone) {
throw new TwitterException(jsone);
} catch (TwitterException te) {
throw te;
}
}
/**
* {@inheritDoc}
*/
@Override
public int getWoeid() {
return woeid;
}
/**
* {@inheritDoc}
*/
@Override
public String getCountryName() {
return countryName;
}
/**
* {@inheritDoc}
*/
@Override
public String getCountryCode() {
return countryCode;
}
/**
* {@inheritDoc}
*/
@Override
public String getPlaceName() {
return placeName;
}
/**
* {@inheritDoc}
*/
@Override
public int getPlaceCode() {
return placeCode;
}
/**
* {@inheritDoc}
*/
@Override
public String getName() {
return name;
}
/**
* {@inheritDoc}
*/
@Override
public String getURL() {
return url;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof LocationJSONImpl)) return false;
LocationJSONImpl that = (LocationJSONImpl) o;
if (woeid != that.woeid) return false;
return true;
}
@Override
public int hashCode() {
return woeid;
}
@Override
public String toString() {
return "LocationJSONImpl{" +
"woeid=" + woeid +
", countryName='" + countryName + '\'' +
", countryCode='" + countryCode + '\'' +
", placeName='" + placeName + '\'' +
", placeCode='" + placeCode + '\'' +
", name='" + name + '\'' +
", url='" + url + '\'' +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy