Home | History | Annotate | Download | only in coll

Lines Matching defs:back

13  * those of a supplied {@linkplain #back backing map}.  Subclasses can add or
20 protected final Map<K, V> back;
25 protected WrapperMap(Map<K, V> back) {
26 this.back = back;
34 back.clear();
42 return back.containsKey(key);
50 return back.containsValue(value);
59 return back.entrySet();
67 return back.get(key);
75 return back.isEmpty();
83 return back.keySet();
91 return back.put(key, value);
99 back.putAll(m);
107 return back.remove(key);
115 return back.size();
123 return back.values();
131 return back.equals(o);
139 return back.hashCode();