Method Summary |
|
public void | clear() Removes all elements in the queue. |
public Object | clone() Clones the queue. |
public Object | get(Object key) Queries the queue for the value stored under the given key.
Parameters: key - the key. |
public int | getLimit() Returns the maximum number of elements in the queue. |
public void | put(Object key, Object ob) Adds a new key/value pair to the queue. |
public void | remove(Object key) Removes the entry stored under the given key. |
public void | removeLast() Removes the last element in the queue. |
public void | setLimit(int limit) Defines the maximal number of elements in the queue. |