Uses of Class
com.restfb.json.JsonValue
-
Packages that use JsonValue Package Description com.restfb Contains types used to interact with the Facebook Graph API.com.restfb.json Repackaging of the minimal-json implementation.com.restfb.types.webhook -
-
Uses of JsonValue in com.restfb
Methods in com.restfb that return JsonValue Modifier and Type Method Description protected JsonValue
DefaultJsonMapper. toJsonInternal(Object object, boolean ignoreNullValuedProperties)
Recursively marshal the givenobject
to JSON. -
Uses of JsonValue in com.restfb.json
Subclasses of JsonValue in com.restfb.json Modifier and Type Class Description class
JsonArray
Represents a JSON array, an ordered collection of JSON values.class
JsonObject
Represents a JSON object, a set of name/value pairs, where the names are strings and the values are JSON values.Fields in com.restfb.json declared as JsonValue Modifier and Type Field Description static JsonValue
Json. FALSE
Represents the JSON literalfalse
.static JsonValue
Json. NULL
Represents the JSON literalnull
.static JsonValue
Json. TRUE
Represents the JSON literaltrue
.Methods in com.restfb.json that return JsonValue Modifier and Type Method Description JsonValue
JsonArray. get(int index)
Returns the value of the element at the specified position in this array.JsonValue
JsonObject. get(String name)
Returns the value of the member with the specified name in this object.JsonValue
JsonObject.Member. getValue()
Returns the value of this member.static JsonValue
Json. parse(Reader reader)
Reads the entire input from the given reader and parses it as JSON.static JsonValue
Json. parse(String string)
Parses the given input string as JSON.static JsonValue
Json. value(boolean value)
Returns a JsonValue instance that represents the givenboolean
value.static JsonValue
Json. value(double value)
Returns a JsonValue instance that represents the givendouble
value.static JsonValue
Json. value(float value)
Returns a JsonValue instance that represents the givenfloat
value.static JsonValue
Json. value(int value)
Returns a JsonValue instance that represents the givenint
value.static JsonValue
Json. value(long value)
Returns a JsonValue instance that represents the givenlong
value.static JsonValue
Json. value(String string)
Returns a JsonValue instance that represents the given string.Methods in com.restfb.json that return types with arguments of type JsonValue Modifier and Type Method Description Iterator<JsonValue>
JsonArray. iterator()
Returns an iterator over the values of this array in document order.List<JsonValue>
JsonArray. values()
Returns a list of the values in this array in document order.Stream<JsonValue>
JsonArray. valueStream()
Methods in com.restfb.json with parameters of type JsonValue Modifier and Type Method Description JsonArray
JsonArray. add(JsonValue value)
Appends the specified JSON value to the end of this array.JsonObject
JsonObject. add(String name, JsonValue value)
Appends a new member to the end of this object, with the specified name and the specified JSON value.JsonArray
JsonArray. set(int index, JsonValue value)
Replaces the element at the specified position in this array with the specified JSON value.JsonObject
JsonObject. set(String name, JsonValue value)
Sets the value of the member with the specified name to the specified JSON value. -
Uses of JsonValue in com.restfb.types.webhook
Constructor parameters in com.restfb.types.webhook with type arguments of type JsonValue Constructor Description ListJsonChangeValue(List<JsonValue> values)
-