js.tinyvm.util
Class HashVector<T>
java.lang.Object
js.tinyvm.util.HashVector<T>
public class HashVector<T>
- extends Object
- Rating

Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
HashVector
public HashVector()
insertElementAt
public void insertElementAt(T aElement,
int aIndex)
- Deprecated. method is to be removed since it messes up indices
addElement
public void addElement(T aElement)
put
public void put(T aKey,
Object aElement)
- Deprecated. method is to be removed since it doesn't seem to fit into the concept since there is no get method
containsKey
public boolean containsKey(Object aKey)
indexOf
public int indexOf(Object aKey)
elements
public Iterator<T> elements()
size
public int size()
elementAt
public T elementAt(int aIndex)