Package | Description |
---|---|
org.pepstock.charba.client.commons |
Modifier and Type | Method and Description |
---|---|
static JsDoubleArrayList |
ArrayListHelper.build(double... values)
Creates a JavaScript array list of doubles.
|
protected JsDoubleArrayList |
JavaScriptObjectContainer.checkAndGetDoubleValues(Key key,
boolean isArray)
Checks if the value is stored as array (doubles) into the object and accordingly the element.
|
protected JsDoubleArrayList |
JavaScriptObjectContainer.getDoubleArray(Key key)
Returns a value (double array list) into embedded JavaScript object at specific property.
|
protected JsDoubleArrayList |
GenericJavaScriptObject.getDoubleArray(java.lang.String key)
Returns an array list (doubles) from the JavaScript object.
|
Modifier and Type | Method and Description |
---|---|
protected boolean |
JavaScriptObjectContainer.checkAndSetDoubleValues(Key key,
JsDoubleArrayList values)
Checks if it should set an array list (doubles) or a single value for a specific property.
|
protected void |
JavaScriptObjectContainer.setDoubleArray(Key key,
JsDoubleArrayList list)
Sets a value (double array list) into embedded JavaScript object at specific property.
|
protected void |
GenericJavaScriptObject.setDoubleArray(java.lang.String key,
JsDoubleArrayList list)
Stores an array list (doubles) into the JavaScript object.
|