| java.lang.Object org.jibx.util.InsertionOrderedMap
InsertionOrderedMap | public class InsertionOrderedMap implements Map(Code) | | Map with keys iterated in insertion order. This is similar to the Java 1.4
java.util.LinkedHashMap class, but compatible with earlier JVM versions. It
also guarantees insertion ordering only for iterating through the key values,
not for other iterations. This implementation is optimized for insert-only
maps.
|
InsertionOrderedMap | public InsertionOrderedMap()(Code) | | |
clear | public void clear()(Code) | | |
containsValue | public boolean containsValue(Object value)(Code) | | |
isEmpty | public boolean isEmpty()(Code) | | |
keyList | public ArrayList keyList()(Code) | | Get list of keys in order added. The returned list is live, and will
grow or shrink as pairs are added to or removed from the map.
key list |
|
|