Uses of Enum Class
jsonvalues.JsArray.TYPE
Packages that use JsArray.TYPE
Package
Description
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.
-
Uses of JsArray.TYPE in jsonvalues
Methods in jsonvalues that return JsArray.TYPEModifier and TypeMethodDescriptionstatic JsArray.TYPEReturns the enum constant of this class with the specified name.static JsArray.TYPE[]JsArray.TYPE.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in jsonvalues with parameters of type JsArray.TYPEModifier and TypeMethodDescriptionbooleanJsArray.equals(JsArray array, JsArray.TYPE ARRAY_AS) Checks if this JSON array is equal to another JSON array.booleanJsObj.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 booleanJson.equals(JsValue elem, JsArray.TYPE ARRAY_AS) Checks if this JSON is equal to another JSON element.JsArray.intersection(JsArray that, JsArray.TYPE ARRAY_AS) this.union(that, SET)returnsthisplus those elements fromthatthat don't exist inthis.JsObj.intersection(JsObj that, JsArray.TYPE ARRAY_AS) 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.union(JsArray that, JsArray.TYPE ARRAY_AS) JsObj.union(JsObj that, JsArray.TYPE ARRAY_AS) 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.