Class NativeArrayDoubleContainer
- java.lang.Object
- 
- org.pepstock.charba.client.commons.NativeArrayContainer<ArrayDouble>
- 
- org.pepstock.charba.client.commons.NativeArrayDoubleContainer
 
 
- 
- Direct Known Subclasses:
- FloatingData
 
 public abstract class NativeArrayDoubleContainer extends NativeArrayContainer<ArrayDouble> Extends the base class of an array container where the wrapped array is an array of doubles.- Author:
- Andrea "Stock" Stocchero
 
- 
- 
Constructor SummaryConstructors Modifier Constructor Description protectedNativeArrayDoubleContainer(ArrayDouble nativeArray)Creates the object with native double array instance to be wrapped.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidclear()Removes all of the elements from this array.protected voidpush(double... items)Adds an array of elements to the end of an array.- 
Methods inherited from class org.pepstock.charba.client.commons.NativeArrayContainergetNativeArray, toJSON
 
- 
 
- 
- 
- 
Constructor Detail- 
NativeArrayDoubleContainerprotected NativeArrayDoubleContainer(ArrayDouble nativeArray) Creates the object with native double array instance to be wrapped.- Parameters:
- nativeArray- native double array instance to be wrapped.
 
 
- 
 - 
Method Detail- 
clearprotected final void clear() Removes all of the elements from this array. The object will be empty after this call returns.
 - 
pushprotected final void push(double... items) Adds an array of elements to the end of an array.- Parameters:
- items- an array of elements to add to the end of the array.
 
 
- 
 
-