- add(String, Object) - Method in class org.forgerock.json.fluent.JsonValue
-
Adds the specified value.
- add(int, Object) - Method in class org.forgerock.json.fluent.JsonValue
-
Adds the specified value to the list.
- add(int, E) - Method in class org.forgerock.json.fluent.JsonValueList
-
Inserts the specified element at the specified position in this list.
- applyTransformers() - Method in class org.forgerock.json.fluent.JsonValue
-
Applies all of the transformations to the value.
- asBoolean() - Method in class org.forgerock.json.fluent.JsonValue
-
Returns the JSON value as a
Boolean object.
- asCharset() - Method in class org.forgerock.json.fluent.JsonValue
-
Returns the JSON string value as a character set used for byte encoding/decoding.
- asDouble() - Method in class org.forgerock.json.fluent.JsonValue
-
Returns the JSON value as a
Double object.
- asEnum(Class<T>) - Method in class org.forgerock.json.fluent.JsonValue
-
Returns the JSON string value as an enum constant of the specified enum type.
- asFile() - Method in class org.forgerock.json.fluent.JsonValue
-
Returns the JSON string value as a File object.
- asInteger() - Method in class org.forgerock.json.fluent.JsonValue
-
Returns the JSON value as an
Integer object.
- asList() - Method in class org.forgerock.json.fluent.JsonValue
-
Returns the JSON value as a
List object.
- asList(Class<E>) - Method in class org.forgerock.json.fluent.JsonValue
-
Returns the JSON value as a
List containing objects of the specified type.
- asLong() - Method in class org.forgerock.json.fluent.JsonValue
-
Returns the JSON value as a
Long object.
- asMap() - Method in class org.forgerock.json.fluent.JsonValue
-
Returns the JSON value as a Map object.
- asNumber() - Method in class org.forgerock.json.fluent.JsonValue
-
Returns the JSON value as a Number object.
- asPattern() - Method in class org.forgerock.json.fluent.JsonValue
-
Returns the JSON string value as a regular expression pattern.
- asPointer() - Method in class org.forgerock.json.fluent.JsonValue
-
Returns the JSON string value as a JSON pointer.
- asString() - Method in class org.forgerock.json.fluent.JsonValue
-
Returns the JSON value as a String object.
- asURI() - Method in class org.forgerock.json.fluent.JsonValue
-
Returns the JSON string value as a uniform resource identifier.
- asUUID() - Method in class org.forgerock.json.fluent.JsonValue
-
Returns the JSON string value as a universally unique identifier (UUID).
- get(int) - Method in class org.forgerock.json.fluent.JsonPointer
-
Returns the reference token at the specified position.
- get(String) - Method in class org.forgerock.json.fluent.JsonValue
-
Returns the specified item value.
- get(int) - Method in class org.forgerock.json.fluent.JsonValue
-
Returns the specified child value.
- get(JsonPointer) - Method in class org.forgerock.json.fluent.JsonValue
-
Returns the specified child value with a pointer, relative to this value as root.
- get(int) - Method in class org.forgerock.json.fluent.JsonValueList
-
Returns the element at the specified position in this list.
- get(Object) - Method in class org.forgerock.json.fluent.JsonValueMap
-
Returns the value to which the specified key is mapped, or null if this map
contains no mapping for the key.
- getJsonValue() - Method in exception org.forgerock.json.fluent.JsonValueException
-
Returns the JSON value for which the exception was thrown.
- getMessage() - Method in exception org.forgerock.json.fluent.JsonValueException
-
Returns the detail message string of this exception.
- getObject() - Method in class org.forgerock.json.fluent.JsonValue
-
Returns the raw Java object representing this JSON value.
- getPointer() - Method in class org.forgerock.json.fluent.JsonValue
-
Returns the pointer of the JSON value in its JSON structure.
- getTransformers() - Method in class org.forgerock.json.fluent.JsonValue
-
Returns the JSON value's list of transformers.
- getWrappedObject() - Method in class org.forgerock.json.fluent.JsonValue
-
Returns a Java object representing this JSON value.
- JsonException - Exception in org.forgerock.json.fluent
-
An exception that is thrown during JSON operations.
- JsonException() - Constructor for exception org.forgerock.json.fluent.JsonException
-
Constructs a new exception with null as its detail message.
- JsonException(String) - Constructor for exception org.forgerock.json.fluent.JsonException
-
Constructs a new exception with the specified detail message.
- JsonException(Throwable) - Constructor for exception org.forgerock.json.fluent.JsonException
-
Constructs a new exception with the specified cause.
- JsonException(String, Throwable) - Constructor for exception org.forgerock.json.fluent.JsonException
-
Constructs a new exception with the specified detail message and cause.
- JsonPointer - Class in org.forgerock.json.fluent
-
Identifies a specific value within a JSON structure.
- JsonPointer() - Constructor for class org.forgerock.json.fluent.JsonPointer
-
Constructs a JSON pointer, identifying the root value of a JSON structure.
- JsonPointer(String) - Constructor for class org.forgerock.json.fluent.JsonPointer
-
Constructs a JSON pointer, identifying the specified pointer value.
- JsonPointer(String[]) - Constructor for class org.forgerock.json.fluent.JsonPointer
-
Constructs a JSON pointer from an array of reference tokens.
- JsonPointer(Iterable<String>) - Constructor for class org.forgerock.json.fluent.JsonPointer
-
Constructs a JSON pointer from an iterable collection of reference tokens.
- JsonTransformer - Interface in org.forgerock.json.fluent
-
Interface for transforming JSON values.
- JsonValue - Class in org.forgerock.json.fluent
-
Represents a value in a JSON object model structure.
- JsonValue(Object, JsonPointer, Collection<? extends JsonTransformer>) - Constructor for class org.forgerock.json.fluent.JsonValue
-
Constructs a JSON value object with given object, pointer and transformers.
- JsonValue(Object, Collection<? extends JsonTransformer>) - Constructor for class org.forgerock.json.fluent.JsonValue
-
Constructs a JSON value object with a given object and transformers.
- JsonValue(Object, JsonPointer) - Constructor for class org.forgerock.json.fluent.JsonValue
-
Constructs a JSON value object with a given object and pointer.
- JsonValue(Object) - Constructor for class org.forgerock.json.fluent.JsonValue
-
Constructs a JSON value object with a given object.
- JsonValueException - Exception in org.forgerock.json.fluent
-
An exception that is thrown during JSON value operations.
- JsonValueException(JsonValue) - Constructor for exception org.forgerock.json.fluent.JsonValueException
-
Constructs a new exception with the specified JSON value and null as its
detail message.
- JsonValueException(JsonValue, String) - Constructor for exception org.forgerock.json.fluent.JsonValueException
-
Constructs a new exception with the specified JSON value and detail message.
- JsonValueException(JsonValue, Throwable) - Constructor for exception org.forgerock.json.fluent.JsonValueException
-
Constructs a new exception with the specified JSON value and cause.
- JsonValueException(JsonValue, String, Throwable) - Constructor for exception org.forgerock.json.fluent.JsonValueException
-
Constructs a new exception with the specified JSON value, detail message and cause.
- JsonValueList<E> - Class in org.forgerock.json.fluent
-
TODO: Description.
- JsonValueList(JsonValue) - Constructor for class org.forgerock.json.fluent.JsonValueList
-
TODO: Description.
- JsonValueMap - Class in org.forgerock.json.fluent
-
TODO: Description.
- JsonValueMap(JsonValue) - Constructor for class org.forgerock.json.fluent.JsonValueMap
-
TODO: Description.
- JsonValueWrapper - Interface in org.forgerock.json.fluent
-
TODO: Description.