Modifier and Type | Method and Description |
---|---|
static <E extends NativeObjectContainer> |
from(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> |
from(E[] items)
Creates a java script array of objects starting from an array of native object containers.
|
static <E extends NativeObjectContainer> |
from(List<E> items)
Creates a java script array of objects starting from a list of native object containers.
|
static <E extends NativeObjectContainer> |
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> |
fromOrNull(E[] items)
Creates a java script array of objects starting from an array of native object containers.
|
static <E extends NativeObjectContainer> |
fromOrNull(List<E> items)
Creates a java script array of objects starting from a list of native object containers.
|
NativeObject |
get(int index)
Gets the value at a given index.
|
@JsOverlay public static <E extends NativeObjectContainer> ArrayObject fromOrNull(E item)
E
- type of native object containersitem
- list of objects to load into new java script array.null
if argument is null
@JsOverlay public static <E extends NativeObjectContainer> ArrayObject from(E item)
E
- type of native object containersitem
- list of objects to load into new java script array.null
@JsOverlay public static <E extends NativeObjectContainer> ArrayObject fromOrNull(E[] items)
E
- type of native object containersitems
- list of objects to load into new java script array.null
if argument is null
or length to 0@JsOverlay public static <E extends NativeObjectContainer> ArrayObject from(E[] items)
E
- type of native object containersitems
- list of objects to load into new java script array.null
or length to 0@JsOverlay public static <E extends NativeObjectContainer> ArrayObject fromOrNull(List<E> items)
E
- type of native object containersitems
- list of objects to load into new java script array.null
if the argument is null
or empty@JsOverlay public static <E extends NativeObjectContainer> ArrayObject from(List<E> items)
E
- type of native object containersitems
- list of objects to load into new java script array.null
or empty@JsOverlay public NativeObject get(int index)
index
- the index to be retrieved