public interface ISimpleList
| Modifier and Type | Method and Description |
|---|---|
int |
get(int index)
Returns the value in the list at the index provided.
|
List<Integer> |
getRange(int index,
int count)
Returns the values in the list starting at the index provided.
|
int |
size() |
List<Integer> getRange(int index, int count)
index - first index of the range required.count - number of elements to return.int get(int index)
index - of the value required.int size()
Copyright © 2017 51Degrees. All rights reserved.