Package | Description |
---|---|
jsonvalues |
The `jsonvalues` package provides a set of classes and interfaces for working with JSON (JavaScript Object Notation) data in a type-safe and structured manner.
|
Modifier and Type | Method and Description |
---|---|
static JsArray.TYPE |
JsArray.TYPE.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JsArray.TYPE[] |
JsArray.TYPE.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
boolean |
JsArray.equals(JsArray array,
JsArray.TYPE ARRAY_AS)
Checks if this JSON array is equal to another JSON array.
|
boolean |
JsObj.equals(JsObj that,
JsArray.TYPE ARRAY_AS)
Checks if this `JsObj` is equal to another `JsObj` considering how arrays are treated (as lists, sets, or multisets).
|
default boolean |
Json.equals(JsValue elem,
JsArray.TYPE ARRAY_AS)
Checks if this JSON is equal to another JSON element.
|
JsArray |
JsArray.intersection(JsArray that,
JsArray.TYPE ARRAY_AS)
this.union(that, SET) returns this plus those elements from that that
don't exist in this . |
JsObj |
JsObj.intersection(JsObj that,
JsArray.TYPE ARRAY_AS) |
T |
Json.intersection(T that,
JsArray.TYPE ARRAY_AS)
Computes the intersection of this JSON and another JSON object 'that' with respect to the given array merging strategy.
|
JsArray |
JsArray.union(JsArray that,
JsArray.TYPE ARRAY_AS) |
JsObj |
JsObj.union(JsObj that,
JsArray.TYPE ARRAY_AS) |
T |
Json.union(T that,
JsArray.TYPE ARRAY_AS)
Computes the union of this JSON and another JSON object 'that' with respect to the given array merging strategy.
|
Copyright © 2023. All rights reserved.