KeyType - Type of the Keys in the Map.ValueType - Type of the Values in the Map.public interface IndexedMap<KeyType,ValueType>
| Modifier and Type | Method and Description |
|---|---|
int |
getCount()
Gets a value representing the number of Entries in this Map.
|
KeyType |
getKey(int position)
Gets the Key located at the given position.
|
ValueType |
getValue(int position)
Gets the Value located at the given position.
|
int getCount()
KeyType getKey(int position)
position - The position for which to get the Key.ValueType getValue(int position)
position - The position for which to get the Value.