Uses of Class
org.rapidcontext.core.data.Array
Packages that use Array
Package
Description
Provides the basic data types and serializers.
Provides simple statistical metrics and data types.
Provides the server-side JavaScript integration.
Provides the procedure and interceptor API:s.
Provides the storage, storable object and metadata API:s.
Provides the storage data types & server-side object initialization.
-
Uses of Array in org.rapidcontext.core.data
Methods in org.rapidcontext.core.data that return ArrayModifier and TypeMethodDescriptionAdds an array value to the end of the list.Adds all entries from another array into this one.Array.addBoolean
(boolean value) Deprecated, for removal: This API element is subject to removal in a future version.Use add(value) with auto-boxing instead.Array.addInt
(int value) Deprecated, for removal: This API element is subject to removal in a future version.Use add(value) with auto-boxing instead.Array.complement
(Array arr) Returns the relative complement of this array and another array.Array.copy()
Creates a copy of this array.static Array
Creates a new array containing all elements in an iterable.static Array
Creates a new array containing all elements in an iterator.static Array
Creates a new array containing all elements in a stream.Array.getArray
(int index) Returns the array array value for the specified index.Returns the dictionary array value for the specified key.Array.intersection
(Array arr) Returns the intersection of this array and another array.static Array
Creates a new array from an array of elements.Array.remove
(int index) Deletes the specified array index and its value.Deletes the first array index having the specified value.Modifies or defines the array value for the specified index.Array.setBoolean
(int index, boolean value) Deprecated, for removal: This API element is subject to removal in a future version.Use set(index, value) with auto-boxing instead.Array.setInt
(int index, int value) Deprecated, for removal: This API element is subject to removal in a future version.Use set(index, value) with auto-boxing instead.Array.sort()
Sorts all values in this array according to their natural ordering.Sorts all values in this array according to the natural ordering of the specified dictionary key.Array.sort
(Comparator<Object> c) Sorts all values in this array according to the comparator specified.Returns the union of this array and another array.Methods in org.rapidcontext.core.data with parameters of type ArrayModifier and TypeMethodDescriptionAdds all entries from another array into this one.Array.complement
(Array arr) Returns the relative complement of this array and another array.boolean
Array.containsAll
(Array arr) Checks if all of the values in the specified array is contained in this array.boolean
Array.containsAny
(Array arr) Checks if one or more of the values in the specified array is contained in this array.Array.intersection
(Array arr) Returns the intersection of this array and another array.Returns the union of this array and another array. -
Uses of Array in org.rapidcontext.core.data.stat
Methods in org.rapidcontext.core.data.stat that return ArrayModifier and TypeMethodDescriptionMovingAverage.serialize()
Returns an array with the averages for each of the window sizes (small to large).MovingSum.serialize()
Returns an array with the sums for each of the intervals (hour to month).MovingAverage.values()
Returns an array with the averages for each of the window sizes (small to large).Constructors in org.rapidcontext.core.data.stat with parameters of type ArrayModifierConstructorDescriptionMovingAverage
(Array arr) Initializes a new set of moving averages from a serialized array.Initializes a new set of moving sums from a serialized array. -
Uses of Array in org.rapidcontext.core.js
Constructors in org.rapidcontext.core.js with parameters of type ArrayModifierConstructorDescriptionArrayWrapper
(Array arr, org.mozilla.javascript.Scriptable parentScope) Creates a new JavaScript array wrapper. -
Uses of Array in org.rapidcontext.core.proc
Constructors in org.rapidcontext.core.proc with parameters of type Array -
Uses of Array in org.rapidcontext.core.storage
Methods in org.rapidcontext.core.storage that return Array -
Uses of Array in org.rapidcontext.core.type
Methods in org.rapidcontext.core.type that return Array