本文整理汇总了Java中com.google.gwt.json.client.JSONValue.isBoolean方法的典型用法代码示例。如果您正苦于以下问题:Java JSONValue.isBoolean方法的具体用法?Java JSONValue.isBoolean怎么用?Java JSONValue.isBoolean使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.google.gwt.json.client.JSONValue
的用法示例。
在下文中一共展示了JSONValue.isBoolean方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getBooleanValueFor
import com.google.gwt.json.client.JSONValue; //导入方法依赖的package包/类
public Boolean getBooleanValueFor(EditorProperties property) {
JSONValue jsonValue = getJsonValueFor(property);
if (jsonValue == null) {
return null;
}
JSONBoolean jsonBoolean = jsonValue.isBoolean();
if (jsonBoolean == null) {
return null;
}
return jsonBoolean.booleanValue();
}
示例2: create
import com.google.gwt.json.client.JSONValue; //导入方法依赖的package包/类
/**
* Creates one of implementations of {@link EditorPropertyWidget}.
*
* @return an instance of {@link EditorPropertyWidget}
*/
public EditorPropertyWidget create(@NotNull String propertyName, @NotNull JSONValue value) {
if (value.isBoolean() != null) {
return new EditorBooleanPropertyWidget(propertyName, value.isBoolean().booleanValue());
}
if (value.isNumber() != null) {
Double doubleValue = value.isNumber().doubleValue();
return new EditorNumberPropertyWidget(propertyName, doubleValue.intValue());
}
return new EditorStringPropertyWidget(propertyName, value.toString());
}
示例3: matches
import com.google.gwt.json.client.JSONValue; //导入方法依赖的package包/类
private static boolean matches(JSONValue element, JsonDecision decision) {
if (decision == JsonDecision.LIST) {
return element.isArray() != null;
}
if (decision == JsonDecision.BOOLEAN) {
return element.isBoolean() != null;
}
if (decision == JsonDecision.NUMBER) {
return element.isNumber() != null;
}
if (decision == JsonDecision.STRING) {
return element.isString() != null;
}
return element.isObject() != null;
}
示例4: setJSONValue
import com.google.gwt.json.client.JSONValue; //导入方法依赖的package包/类
@Override
public void setJSONValue(JSONValue value) {
JSONBoolean boolVal = value.isBoolean();
JSONString stringVal = value.isString();
if (boolVal != null) {
checkbox.setValue(boolVal.booleanValue());
} else if (stringVal != null) {
checkbox.setValue(Boolean.parseBoolean(stringVal.stringValue()));
} else {
throw new JSONException("Not a valid JSON boolean: " + value.toString());
}
}
示例5: setValue
import com.google.gwt.json.client.JSONValue; //导入方法依赖的package包/类
@Override
public void setValue(JSONValue value) {
if (value != null && value.isBoolean() != null) {
propertyValueBox.setValue(value.isBoolean().booleanValue());
}
}
示例6: getJsonBooleanValue
import com.google.gwt.json.client.JSONValue; //导入方法依赖的package包/类
/**
* Helper function to extract a boolean value from given JSON object.
*
* @param json JSON object to extract the value from.
* @param key key of the value to extract.
* @return the Boolean object extracted from JSON (can be null if the value
* does not exist or is invalid.
*/
private static Boolean getJsonBooleanValue(JSONObject json, String key) {
JSONValue value = json.get(key);
JSONBoolean bool = value == null ? null : value.isBoolean();
return bool != null ? bool.booleanValue() : null;
}