Uses of Enum
jsonvalues.JsArray.TYPE
Packages that use JsArray.TYPE
-
Uses of JsArray.TYPE in jsonvalues
Methods in jsonvalues that return JsArray.TYPEModifier and TypeMethodDescriptionstatic JsArray.TYPEReturns 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.Methods in jsonvalues with parameters of type JsArray.TYPEModifier and TypeMethodDescriptionbooleanJsArray.equals(JsArray array, JsArray.TYPE ARRAY_AS) Returns true if this array is equal to the given as a parameter.booleanJsObj.equals(JsObj that, JsArray.TYPE ARRAY_AS) return true if this obj is equal to the given as a parameter.default booleanJson.equals(JsValue elem, JsArray.TYPE ARRAY_AS) 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) this.intersection(that, SET)returns an array with the elements that exist in boththisandthatthis.intersection(that, MULTISET)returns an array with the elements that exist in boththisandthat, being duplicates allowed.Json.intersection(T that, JsArray.TYPE ARRAY_AS) JsArray.union(JsArray that, JsArray.TYPE ARRAY_AS) returnsthisplus those elements fromthatwhich position is>= this.size(), and, at the positions where a container of the same type exists in boththisandthat, the result is their union.JsObj.union(JsObj that, JsArray.TYPE ARRAY_AS) returnsthisjson object plus those pairs from the given json objectthatwhich keys don't exist inthis.Json.union(T that, JsArray.TYPE ARRAY_AS)