twitter4j.LanguageJSONImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twitter4j-core Show documentation
Show all versions of twitter4j-core Show documentation
A Java library for the Twitter API
/*
* Copyright 2007 Yusuke Yamamoto
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package twitter4j;
import twitter4j.api.HelpResources;
import twitter4j.conf.Configuration;
/**
* @author Yusuke Yamamoto - yusuke at mac.com
* @since Twitter4J 2.2.3
*/
public class LanguageJSONImpl implements HelpResources.Language {
private String name;
private String code;
private String status;
LanguageJSONImpl(JSONObject json) throws TwitterException {
super();
init(json);
}
private void init(JSONObject json) throws TwitterException {
try {
name = json.getString("name");
code = json.getString("code");
status = json.getString(("status"));
} catch (JSONException jsone) {
throw new TwitterException(jsone.getMessage() + ":" + json.toString(), jsone);
}
}
@Override
public String getName() {
return name;
}
@Override
public String getCode() {
return code;
}
@Override
public String getStatus() {
return status;
}
static ResponseList createLanguageList(HttpResponse res, Configuration conf) throws TwitterException {
return createLanguageList(res.asJSONArray(), res, conf);
}
/*package*/
static ResponseList createLanguageList(JSONArray list, HttpResponse res
, Configuration conf) throws TwitterException {
if (conf.isJSONStoreEnabled()) {
TwitterObjectFactory.clearThreadLocalMap();
}
try {
int size = list.length();
ResponseList languages =
new ResponseListImpl(size, res);
for (int i = 0; i < size; i++) {
JSONObject json = list.getJSONObject(i);
HelpResources.Language language = new LanguageJSONImpl(json);
languages.add(language);
if (conf.isJSONStoreEnabled()) {
TwitterObjectFactory.registerJSONObject(language, json);
}
}
if (conf.isJSONStoreEnabled()) {
TwitterObjectFactory.registerJSONObject(languages, list);
}
return languages;
} catch (JSONException jsone) {
throw new TwitterException(jsone);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy