Uses of Interface
kong.unirest.core.json.JsonEngine.Element
-
Packages that use JsonEngine.Element Package Description kong.unirest.core.json -
-
Uses of JsonEngine.Element in kong.unirest.core.json
Subinterfaces of JsonEngine.Element in kong.unirest.core.json Modifier and Type Interface Description static interface
JsonEngine.Array
static interface
JsonEngine.Object
static interface
JsonEngine.Primitive
Methods in kong.unirest.core.json that return JsonEngine.Element Modifier and Type Method Description JsonEngine.Element
JsonEngine.Array. get(int index)
JsonEngine.Element
JsonEngine.Object. get(String key)
JsonEngine.Element
JSONElement. getElement()
JsonEngine.Element
JsonEngine.Array. put(int index, Boolean number)
JsonEngine.Element
JsonEngine.Array. put(int index, Number number)
JsonEngine.Element
JsonEngine.Array. put(int index, String number)
JsonEngine.Element
JsonEngine.Array. remove(int index)
JsonEngine.Element
JsonEngine. toJsonTree(Object obj)
Methods in kong.unirest.core.json with parameters of type JsonEngine.Element Modifier and Type Method Description void
JsonEngine.Array. add(JsonEngine.Element obj)
void
JsonEngine.Object. add(String key, JsonEngine.Element value)
void
JsonEngine.Object. addProperty(String key, JsonEngine.Element value)
<T> T
JsonEngine. fromJson(JsonEngine.Element obj, Class<T> mapClass)
void
JsonEngine.Array. set(int index, JsonEngine.Element o)
String
JsonEngine. toJson(JsonEngine.Element obj)
void
JsonEngine. toJson(JsonEngine.Element obj, Writer sw)
protected static Map<String,Object>
JSONElement. toMap(JsonEngine.Element obj)
protected static String
JSONElement. toPrettyJson(JsonEngine.Element obj)
String
JsonEngine. toPrettyJson(JsonEngine.Element obj)
void
JsonEngine. toPrettyJson(JsonEngine.Element engineElement, Writer sw)
Constructors in kong.unirest.core.json with parameters of type JsonEngine.Element Constructor Description JSONElement(JsonEngine.Element e)
-