| java.lang.Object org.apache.batik.css.engine.value.StringMap
StringMap | public class StringMap (Code) | | A simple hashtable, not synchronized, with fixed load factor and with
equality test made with '=='.
author: Stephane Hillion version: $Id$ |
Inner Class :protected static class Entry | |
INITIAL_CAPACITY | final protected static int INITIAL_CAPACITY(Code) | | The initial capacity
|
count | protected int count(Code) | | The number of entries
|
table | protected Entry[] table(Code) | | The underlying array
|
StringMap | public StringMap()(Code) | | Creates a new table.
|
StringMap | public StringMap(StringMap t)(Code) | | Creates a copy of the given StringMap object.
Parameters: t - The table to copy. |
get | public Object get(String key)(Code) | | Gets the value corresponding to the given string.
the value or null |
rehash | protected void rehash()(Code) | | Rehash the table
|
|
|