ArrayObject |
ArrayObject.filter(ArrayObject.ArrayFilterCallback callback) |
Creates a new array with all elements that pass the test implemented by the provided function.
|
static <E extends NativeObjectContainer> ArrayObject |
ArrayObject.fromOrEmpty(E item) |
Creates a java script array of objects starting from a native object containers and the array will have ONE 1 element.
|
static <E extends NativeObjectContainer> ArrayObject |
ArrayObject.fromOrEmpty(E[] items) |
Creates a java script array of objects starting from an array of native object containers.
|
static <E extends NativeObjectContainer> ArrayObject |
ArrayObject.fromOrEmpty(List<E> items) |
Creates a java script array of objects starting from a list of native object containers.
|
static ArrayObject |
ArrayObject.fromOrEmpty(NativeObject item) |
Creates a java script array of objects starting from a native object containers and the array will have ONE 1 element.
|
static <E extends NativeObjectContainer> ArrayObject |
ArrayObject.fromOrNull(E item) |
Creates a java script array of objects starting from a native object containers and the array will have ONE 1 element.
|
static <E extends NativeObjectContainer> ArrayObject |
ArrayObject.fromOrNull(E[] items) |
Creates a java script array of objects starting from an array of native object containers.
|
static <E extends NativeObjectContainer> ArrayObject |
ArrayObject.fromOrNull(List<E> items) |
Creates a java script array of objects starting from a list of native object containers.
|
static ArrayObject |
ArrayObject.fromOrNull(NativeObject item) |
Creates a java script array of objects starting from a native object and the array will have ONE 1 element.
|
protected ArrayObject |
NativeObjectContainer.getValueOrArray(Key key,
NativeObjectContainer defaultValue) |
Returns a value (array) in the embedded JavaScript object at specific property.
This must be used when a java script property can contain an array or a object.
|