当前位置: 首页>>代码示例>>Java>>正文


Java JSONValue.isBoolean方法代码示例

本文整理汇总了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();
}
 
开发者ID:eclipse,项目名称:che,代码行数:13,代码来源:EditorPreferencesManager.java

示例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());
}
 
开发者ID:eclipse,项目名称:che,代码行数:17,代码来源:EditorPropertyWidgetFactory.java

示例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;
}
 
开发者ID:eclipse,项目名称:che,代码行数:16,代码来源:EitherUtil.java

示例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());
  }
}
 
开发者ID:showlowtech,项目名称:google-apis-explorer,代码行数:13,代码来源:SchemaForm.java

示例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());
  }
}
 
开发者ID:eclipse,项目名称:che,代码行数:7,代码来源:EditorBooleanPropertyWidget.java

示例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;
}
 
开发者ID:jorkey,项目名称:Wiab.pro,代码行数:14,代码来源:GadgetMetadata.java


注:本文中的com.google.gwt.json.client.JSONValue.isBoolean方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。