Lines Matching defs:map

45     private Map<String,Object> map;
56 this.map = m;
67 * Sets the specified key/value in the underlying <code>map</code> field.
80 return map.put(name,value);
89 * if toMerge map is null or if some key in the map is null.
91 * if some key in the map is an empty String.
95 throw new NullPointerException("toMerge map is null");
106 map.clear();
110 * Returns <tt>true</tt> if this map contains a mapping for the specified
112 * this map contains a mapping for a key <tt>k</tt> such that
116 * @param key key whose presence in this map is to be tested.
117 * @return <tt>true</tt> if this map contains a mapping for the specified
126 return map.containsKey(key);
131 return map.containsValue(value);
136 return map.entrySet();
140 * Returns the value to which this map maps the specified key. Returns
141 * <tt>null</tt> if the map contains no mapping for this key. A return
143 * map contains no mapping for the key; it's also possible that the map
147 * <p>More formally, if this map contains a mapping from a key
153 * @return the value to which this map maps the specified key, or
154 * <tt>null</tt> if the map contains no mapping for this key.
162 return map.get(key);
167 return map.isEmpty();
172 return map.keySet();
176 * Removes the mapping for this key from this map if it is present
177 * (optional operation). More formally, if this map contains a mapping
180 * is removed. (The map can contain at most one such mapping.)
182 * <p>Returns the value to which the map previously associated the key, or
183 * <tt>null</tt> if the map contained no mapping for this key. (A
184 * <tt>null</tt> return can also indicate that the map previously
186 * supports <tt>null</tt> values.) The map will not contain a mapping for
189 * @param key key whose mapping is to be removed from the map.
199 return map.remove(key);
204 return map.size();
209 return map.values();