915916917918919920921922923924925
List<CachedMeteringValue> list = new LinkedList<CachedMeteringValue>(); for (int i=0; i< array.size(); i++) { if (array.get(i) instanceof JSONObject) { list.add(new JSONCachedMeteringValueImpl((JSONObject)array.get(i))); } } return list; }