Interface ISciListInteger
Defines the interface which allows to get access to primitive internal items array.
Implements
com.scichart.data.model.ISciList<java.lang.Integer>
Namespace:
Assembly: .dll
Syntax
public interface ISciListInteger extends ISciList<Integer>
Methods
getItemsArray()
Gets the internal items array that this list wraps for direct access.
Declaration
public abstract int[] getItemsArray()
Returns
| Type | Description |
|---|---|
| int[] | The internal items array that this list wraps for direct access. |
getItemsArray(boolean normalizeIndex)
Gets the internal items array that this list wraps for direct access.
Declaration
public abstract int[] getItemsArray(boolean normalizeIndex)
Parameters
| Type | Name | Description |
|---|---|---|
| boolean | normalizeIndex | The value which indicate whether to normalize index or not. |
Returns
| Type | Description |
|---|---|
| int[] | The internal items array that this list wraps for direct access. |
getStartIndex()
Gets the start index in internal items array.
Declaration
public abstract int getStartIndex()
Returns
| Type | Description |
|---|---|
| int | The start index in internal items array |
Implements
com.scichart.data.model.ISciList<java.lang.Integer>