Uses of Class
org.pepstock.charba.client.commons.ArrayInteger
-
Packages that use ArrayInteger Package Description org.pepstock.charba.client.commons Core classes to manage the inter-operations with java script code.org.pepstock.charba.client.data Contains all elements to configure the datasets of a chart instance (know as chart data at instance level).org.pepstock.charba.client.dom.elements Contains a set of DOM elements that Charba is using. -
-
Uses of ArrayInteger in org.pepstock.charba.client.commons
Methods in org.pepstock.charba.client.commons that return ArrayInteger Modifier and Type Method Description static ArrayInteger
ArrayInteger. fromOrEmpty(int... items)
This method creates new array instance with a variable number ofint
arguments.static ArrayInteger
ArrayInteger. fromOrEmpty(List<Integer> items)
Creates a java script array of integers starting from list of integers.static ArrayInteger
ArrayInteger. fromOrNull(int... items)
This method creates new array instance with a variable number ofint
arguments.static ArrayInteger
ArrayInteger. fromOrNull(List<Integer> items)
Creates a java script array of integers starting from list of integers.protected ArrayInteger
NativeObjectContainer. getValueOrArray(Key key, int 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 integer.Methods in org.pepstock.charba.client.commons with parameters of type ArrayInteger Modifier and Type Method Description static ArrayIntegerList
ArrayListHelper. list(ArrayInteger values)
Creates a array list of integers by a java script array of integers.static List<Integer>
ArrayListHelper. unmodifiableList(ArrayInteger values)
Creates an unmodifiable array list of integers by a java script array of integers. -
Uses of ArrayInteger in org.pepstock.charba.client.data
Methods in org.pepstock.charba.client.data that return ArrayInteger Modifier and Type Method Description protected ArrayInteger
HoverDataset. getWidths(Key key, int defaultvalue)
protected ArrayInteger
HoverFlexDataset. getWidths(Key key, int defaultvalue)
Returns an array of widths as integer -
Uses of ArrayInteger in org.pepstock.charba.client.dom.elements
Methods in org.pepstock.charba.client.dom.elements that return ArrayInteger Modifier and Type Method Description ArrayInteger
ImageData. getData()
Returns the array which is representing a one-dimensional array containing the data in the RGBA order, with integer values between 0 and 255 (inclusive).
-