Uses of Class
com.restfb.json.JsonValue
Package
Description
Contains types used to interact with the Facebook
Graph API.
Repackaging of the minimal-json implementation.
-
Uses of JsonValue in com.restfb
Modifier and TypeMethodDescriptionprotected JsonValue
DefaultJsonMapper.toJsonInternal
(Object object, boolean ignoreNullValuedProperties) Recursively marshal the givenobject
to JSON. -
Uses of JsonValue in com.restfb.json
Modifier and TypeClassDescriptionclass
Represents a JSON array, an ordered collection of JSON values.class
Represents a JSON object, a set of name/value pairs, where the names are strings and the values are JSON values.Modifier and TypeFieldDescriptionstatic final JsonValue
Json.FALSE
Represents the JSON literalfalse
.static final JsonValue
Json.NULL
Represents the JSON literalnull
.static final JsonValue
Json.TRUE
Represents the JSON literaltrue
.Modifier and TypeMethodDescriptionJsonArray.get
(int index) Returns the value of the element at the specified position in this array.Returns the value of the member with the specified name in this object.JsonObject.Member.getValue()
Returns the value of this member.static JsonValue
Reads the entire input from the given reader and parses it as JSON.static JsonValue
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
Returns a JsonValue instance that represents the given string.Modifier and TypeMethodDescriptionJsonArray.iterator()
Returns an iterator over the values of this array in document order.JsonArray.values()
Returns a list of the values in this array in document order.JsonArray.valueStream()
Modifier and TypeMethodDescriptionAppends the specified JSON value to the end of this array.Appends a new member to the end of this object, with the specified name and the specified JSON value.Replaces the element at the specified position in this array with the specified JSON value.Sets the value of the member with the specified name to the specified JSON value. -
Uses of JsonValue in com.restfb.types.webhook