public interface Values
Modifier and Type | Method and Description |
---|---|
int |
getItemCount()
Returns the number of items (values) in the collection.
|
java.lang.Number |
getValue(int index)
Returns the value with the specified index.
|
int getItemCount()
java.lang.Number getValue(int index)
index
- the item index (in the range 0
to
getItemCount() - 1
).null
).java.lang.IndexOutOfBoundsException
- if index
is not in the
specified range.