當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。