Uses of Class
net.minidev.json.JSONNavi

Packages that use JSONNavi
net.minidev.json   
 

Uses of JSONNavi in net.minidev.json
 

Methods in net.minidev.json that return JSONNavi
 JSONNavi<T> JSONNavi.add(Object... values)
          add value to the current arrays
 JSONNavi<T> JSONNavi.array()
          Set current value as Json Array You can also skip this call Arrays can be create automatically.
 JSONNavi<?> JSONNavi.at(int index)
          Access to the index position.
 JSONNavi<?> JSONNavi.at(String key)
           
 JSONNavi<?> JSONNavi.atNext()
          Access to last + 1 the index position.
static JSONNavi<JSONAwareEx> JSONNavi.newInstance()
          build a JSONObject or a jsonArray
static JSONNavi<JSONArray> JSONNavi.newInstanceArray()
          build a JSONArray
static JSONNavi<JSONObject> JSONNavi.newInstanceObject()
          build a JSONObject
static JSONNavi<Collection<?>> JSONNavi.newInstanceOrdered()
          build a LinkedHashMap or a JSONArray
 JSONNavi<T> JSONNavi.object()
          Set current value as Json Object You can also skip this call, Objects can be create automatically.
 JSONNavi<T> JSONNavi.root()
          return to root node
 JSONNavi<T> JSONNavi.set(Boolean bool)
          set current value as Boolean
 JSONNavi<T> JSONNavi.set(Number num)
          set current value as Number
 JSONNavi<T> JSONNavi.set(String text)
          set current value as String
 JSONNavi<T> JSONNavi.set(String key, double value)
          write an value in the current object
 JSONNavi<T> JSONNavi.set(String key, float value)
          write an value in the current object
 JSONNavi<T> JSONNavi.set(String key, int value)
          write an value in the current object
 JSONNavi<T> JSONNavi.set(String key, long value)
          write an value in the current object
 JSONNavi<T> JSONNavi.set(String key, Number value)
           
 JSONNavi<T> JSONNavi.set(String key, String value)
           
 JSONNavi<?> JSONNavi.up()
          Move one level up in Json tree. if no more level up is available the statement had no effect.
 JSONNavi<?> JSONNavi.up(int level)
          call up() level times.
 



Copyright © 2012 Chemouni Uriel. All Rights Reserved.