Package | Description |
---|---|
jsonvalues |
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)
Returns true if this array is equal to the given as a parameter.
|
boolean |
JsObj.equals(JsObj that,
JsArray.TYPE ARRAY_AS)
return true if this obj is equal to the given as a parameter.
|
default boolean |
Json.equals(JsValue elem,
JsArray.TYPE ARRAY_AS) |
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)
this.intersection(that, SET) returns an array with the elements that exist in both this and that
this.intersection(that, MULTISET) returns an array with the elements that exist in both this and that ,
being duplicates allowed. |
T |
Json.intersection(T that,
JsArray.TYPE ARRAY_AS) |
JsArray |
JsArray.union(JsArray that,
JsArray.TYPE ARRAY_AS)
returns
this plus those elements from that which position is >= this.size() ,
and, at the positions where a container of the same type exists in both this and that ,
the result is their union. |
JsObj |
JsObj.union(JsObj that,
JsArray.TYPE ARRAY_AS)
returns
this json object plus those pairs from the given json object that which
keys don't exist in this . |
T |
Json.union(T that,
JsArray.TYPE ARRAY_AS) |
Copyright © 2022. All rights reserved.