Class ListMap<K,V>

All Implemented Interfaces:
Serializable, Cloneable, Map<K,V>, SequencedMap<K,V>

public class ListMap<K,V> extends LinkedHashMap<K,V>
As of Coherence 3.2, the ListMap simply extends Java's own LinkedHashMap, which became available in JDK 1.4.
See Also:
  • Constructor Details

    • ListMap

      public ListMap()
      Construct a ListMap.
    • ListMap

      public ListMap(Map<? extends K,? extends V> map)
      Construct a ListMap with the same mappings as the given map.
      Parameters:
      map - the map whose mappings are to be placed in this map