• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/collections/

Lines Matching defs:map

43      * Creates a map view of a {@link Database}.
71 * Creates a map view of a {@link Database} with a {@link
72 * PrimaryKeyAssigner}. Writing is allowed for the created map.
101 * Creates a map entity view of a {@link Database}.
129 * Creates a map entity view of a {@link Database} with a {@link
130 * PrimaryKeyAssigner}. Writing is allowed for the created map.
206 * Returns the value to which this map maps the specified key. If
222 * Associates the specified value with the specified key in this map
253 * PrimaryKeyAssigner} is associated with Store for this map, it will be
261 * the map in order to call this method.</p>
288 * Removes the mapping for this key from this map if present (optional
306 * Returns true if this map contains the specified key. This method
318 * Returns true if this map contains the specified value. When an entity
319 * binding is used, this method returns whether the map contains the
332 * Copies all of the mappings from the specified map to this map (optional
334 * map are effectively appended to the existing mappings in this map, that
335 * is no previously existing mappings in this map are replaced. This
344 public void putAll(Map map) {
349 Collection coll = map.entrySet();
364 * Returns a set view of the keys contained in this map. A {@link
365 * java.util.SortedSet} is returned if the map supports key ranges. The
366 * returned collection will be read-only if the map is read-only. This
373 * map.
387 * Returns a set view of the mappings contained in this map. A {@link
388 * java.util.SortedSet} is returned if the map supports key ranges. The
389 * returned collection will be read-only if the map is read-only. This
396 * this map.
410 * Returns a collection view of the values contained in this map. A {@link
411 * java.util.SortedSet} is returned if the map supports key ranges and the
412 * value/entity binding can be used to derive the map's key from its
414 * map is read-only. This method conforms to the {@link Map#values()}
421 * this map.
436 * in this map. This collection's iterator() method is particularly useful
465 * Returns a new map from primary key to value for the subset of records
476 * will be represented by the returned map.
479 * map.
500 * Compares the specified object with this map for equality. A value
531 * Converts the map to a string representation for debugging. WARNING: All