Uses of Class
com.restfb.json.JsonValue
Packages that use 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
Methods in com.restfb that return JsonValueModifier and TypeMethodDescriptionprotected JsonValueDefaultJsonMapper.toJsonInternal(Object object, boolean ignoreNullValuedProperties) Recursively marshal the givenobjectto JSON. -
Uses of JsonValue in com.restfb.json
Subclasses of JsonValue in com.restfb.jsonModifier and TypeClassDescriptionclassRepresents a JSON array, an ordered collection of JSON values.classRepresents 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 JsonValueModifier and TypeFieldDescriptionstatic final JsonValueJson.FALSERepresents the JSON literalfalse.static final JsonValueJson.NULLRepresents the JSON literalnull.static final JsonValueJson.TRUERepresents the JSON literaltrue.Methods in com.restfb.json that return JsonValueModifier 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 JsonValueReads the entire input from the given reader and parses it as JSON.static JsonValueParses the given input string as JSON.static JsonValueJson.value(boolean value) Returns a JsonValue instance that represents the givenbooleanvalue.static JsonValueJson.value(double value) Returns a JsonValue instance that represents the givendoublevalue.static JsonValueJson.value(float value) Returns a JsonValue instance that represents the givenfloatvalue.static JsonValueJson.value(int value) Returns a JsonValue instance that represents the givenintvalue.static JsonValueJson.value(long value) Returns a JsonValue instance that represents the givenlongvalue.static JsonValueReturns a JsonValue instance that represents the given string.Methods in com.restfb.json that return types with arguments of type JsonValueModifier 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()Methods in com.restfb.json with parameters of type JsonValueModifier 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
Constructor parameters in com.restfb.types.webhook with type arguments of type JsonValue