Searched defs:LinkedHashMap (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/java/util/
H A DLinkedHashMap.java21 * LinkedHashMap is an implementation of {@link Map} that guarantees iteration order.
33 * <p>Note: the implementation of {@code LinkedHashMap} is not synchronized.
49 public class LinkedHashMap<K, V> extends HashMap<K, V> { class in inherits:HashMap
64 * Constructs a new empty {@code LinkedHashMap} instance.
66 public LinkedHashMap() { method in class:LinkedHashMap
72 * Constructs a new {@code LinkedHashMap} instance with the specified
80 public LinkedHashMap(int initialCapacity) { method in class:LinkedHashMap
85 * Constructs a new {@code LinkedHashMap} instance with the specified
96 public LinkedHashMap(int initialCapacity, float loadFactor) { method in class:LinkedHashMap
101 * Constructs a new {@code LinkedHashMap} instanc
117 public LinkedHashMap( method in class:LinkedHashMap
131 public LinkedHashMap(Map<? extends K, ? extends V> map) { method in class:LinkedHashMap
[all...]

Completed in 31 milliseconds