當前位置: 首頁>>代碼示例>>Java>>正文


Java JsonArray.getValue方法代碼示例

本文整理匯總了Java中io.vertx.core.json.JsonArray.getValue方法的典型用法代碼示例。如果您正苦於以下問題:Java JsonArray.getValue方法的具體用法?Java JsonArray.getValue怎麽用?Java JsonArray.getValue使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在io.vertx.core.json.JsonArray的用法示例。


在下文中一共展示了JsonArray.getValue方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: execZero

import io.vertx.core.json.JsonArray; //導入方法依賴的package包/類
/**
 * @param dataArray
 * @param clazz
 * @param fnIt
 * @param <T>
 * @throws ZeroException
 */
static <T> void execZero(final JsonArray dataArray,
                         final Class<T> clazz,
                         final ZeroBiConsumer<T, Integer> fnIt)
        throws ZeroException {
    final int size = dataArray.size();
    for (int idx = Values.IDX; idx < size; idx++) {
        final Object value = dataArray.getValue(idx);
        if (null != value) {
            if (clazz == value.getClass()) {
                final T item = (T) value;
                fnIt.accept(item, idx);
            }
        }
    }
}
 
開發者ID:silentbalanceyh,項目名稱:vertx-zero,代碼行數:23,代碼來源:Congregation.java

示例2: apply

import io.vertx.core.json.JsonArray; //導入方法依賴的package包/類
@Override
public Object apply(Object firstParam, Options options) throws IOException {
  if (options.params.length > 0) {
    int index = options.param(0);
    if (firstParam instanceof JsonArray) {
      JsonArray array = (JsonArray) firstParam;
      if (array.size() > index) {
        return array.getValue(index);
      }
    }
  }
  return null;
}
 
開發者ID:Knotx,項目名稱:knotx-handlebars-extension,代碼行數:14,代碼來源:ElementHelper.java

示例3: setSeries

import io.vertx.core.json.JsonArray; //導入方法依賴的package包/類
private void setSeries(String name, JsonArray jsonArray){

        javafx.scene.chart.XYChart.Series series = new javafx.scene.chart.XYChart.Series();
        series.setName(name);
        if(xScale == null) return;
        for(int i=0;i<xScale.size();i++){
            if(i<jsonArray.size()&&jsonArray.getValue(i)!=null) {
                Object x = xScale.getValue(i);
                if(xAxis instanceof CategoryAxis)
                    x = x.toString();

                Object y = jsonArray.getValue(i);
                if(y == null){

                }else if(y instanceof Number)
                    addData(series,x,y);
                else if(y instanceof JsonObject){
                    Object xx=null, yy=null, extra=null;
                    JsonObject jsonObject = (JsonObject)y;
                    for(String key:jsonObject.fieldNames()){
                        if(key.equals("x")) xx = jsonObject.getValue(key);
                        else if(key.equals("y")) yy = jsonObject.getValue(key);
                        else extra = jsonObject.getValue(key);
                    }

                    if(xx!=null&&yy!=null){
                        if(extra!=null) addData(series,xx,yy,extra);
                        else addData(series,xx,yy);
                    }
                }
                else
                    addData(series,x,y);
            }
        }
        ((javafx.scene.chart.XYChart)body).getData().add(series);
    }
 
開發者ID:whitewoodcity,項目名稱:xbrowser,代碼行數:37,代碼來源:XYChart.java


注:本文中的io.vertx.core.json.JsonArray.getValue方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。