org.apache.sling.commons.json.JSONArray.getDouble()方法的使用及代码示例

x33g5p2x  于2022-01-22 转载在 其他  
字(2.1k)|赞(0)|评价(0)|浏览(116)

本文整理了Java中org.apache.sling.commons.json.JSONArray.getDouble()方法的一些代码示例,展示了JSONArray.getDouble()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JSONArray.getDouble()方法的具体详情如下:
包路径:org.apache.sling.commons.json.JSONArray
类名称:JSONArray
方法名:getDouble

JSONArray.getDouble介绍

[英]Get the double value associated with an index.
[中]获取与索引关联的双精度值。

代码示例

代码示例来源:origin: org.apache.sling/org.apache.sling.commons.json

/**
 * Get the optional double value associated with an index.
 * The defaultValue is returned if there is no value for the index,
 * or if the value is not a number and cannot be converted to a number.
 *
 * @param index subscript
 * @param defaultValue     The default value.
 * @return      The value.
 */
public double optDouble(int index, double defaultValue) {
  try {
    return getDouble(index);
  } catch (Exception e) {
    return defaultValue;
  }
}

代码示例来源:origin: org.apache.sling/org.apache.sling.commons.json

/**
 * Get the long value associated with an index.
 *
 * @param index The index must be between 0 and length() - 1.
 * @return      The value.
 * @throws   JSONException If the key is not found or if the value cannot
 *  be converted to a number.
 */
public long getLong(int index) throws JSONException {
  Object o = get(index);
  return o instanceof Number ?
      ((Number)o).longValue() : (long)getDouble(index);
}

代码示例来源:origin: org.apache.sling/org.apache.sling.commons.json

/**
 * Get the int value associated with an index.
 *
 * @param index The index must be between 0 and length() - 1.
 * @return      The value.
 * @throws   JSONException If the key is not found or if the value cannot
 *  be converted to a number.
 *  if the value cannot be converted to a number.
 */
public int getInt(int index) throws JSONException {
  Object o = get(index);
  return o instanceof Number ?
      ((Number)o).intValue() : (int)getDouble(index);
}

代码示例来源:origin: io.wcm/io.wcm.caconfig.editor

double[] values = new double[array.length()];
for (int i = 0; i < values.length; i++) {
 values[i] = array.getDouble(i);

代码示例来源:origin: com.adobe.acs/acs-aem-commons-bundle

String line = firstAlternative.getString("transcript");
if (StringUtils.isNotBlank(line)) {
  double firstTimestamp = firstAlternative.getJSONArray("timestamps").getJSONArray(0).getDouble(1);
  builder.append("[").append(firstTimestamp).append("s]: ").append(line).append("\n");

相关文章