Class ArrayTouch
- java.lang.Object
-
- org.pepstock.charba.client.commons.Array
-
- org.pepstock.charba.client.commons.ArrayTouch
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ArrayTouch
fromOrEmpty(List<Touch> items)
Creates a java script array of canvas starting from list of canvas.static ArrayTouch
fromOrEmpty(Touch... items)
This method creates new array instance with a variable number ofTouch
arguments.static ArrayTouch
fromOrNull(List<Touch> items)
Creates a java script array of canvas starting from list of canvas.static ArrayTouch
fromOrNull(Touch... items)
This method creates new array instance with a variable number ofTouch
arguments.Touch
get(int index)
Gets the value at a given index.
-
-
-
Method Detail
-
fromOrNull
@JsOverlay public static ArrayTouch fromOrNull(Touch... items)
This method creates new array instance with a variable number ofTouch
arguments.- Parameters:
items
- Touch items to create new array- Returns:
- new array instance of canvas or
null
if argument isnull
or length to 0
-
fromOrEmpty
@JsOverlay public static ArrayTouch fromOrEmpty(Touch... items)
This method creates new array instance with a variable number ofTouch
arguments.- Parameters:
items
- Touch items to create new array- Returns:
- new array instance of canvas or an empty array if argument is
null
or length to 0
-
fromOrNull
@JsOverlay public static ArrayTouch fromOrNull(List<Touch> items)
Creates a java script array of canvas starting from list of canvas.- Parameters:
items
- list of canvas to load in the new java script array.- Returns:
- new array instance of canvas or
null
if argument isnull
or empty
-
fromOrEmpty
@JsOverlay public static ArrayTouch fromOrEmpty(List<Touch> items)
Creates a java script array of canvas starting from list of canvas.- Parameters:
items
- list of canvas to load in the new java script array.- Returns:
- new array instance of canvas or an empty array if argument is
null
or empty
-
get
@JsOverlay public Touch get(int index)
Gets the value at a given index. If no value exists at the given index, a type-conversion error will occur in Development Mode and unpredictable behavior may occur in Production Mode. If the numeric value returned is non-integral, it will cause a warning in Development Mode, and may affect the results of mathematical expressions.- Parameters:
index
- the index to be retrieved- Returns:
- the value at the given index
-
-