Home | History | Annotate | Download | only in core

Lines Matching defs:nameValueMap

46     private MultiValueMapImpl<NameValue> nameValueMap = new MultiValueMapImpl<NameValue>();
74 if (!nameValueMap.isEmpty()) {
75 Iterator<NameValue> iterator = nameValueMap.values().iterator();
104 this.nameValueMap.put(nv.getName().toLowerCase(), nv);
112 nameValueMap.put(name.toLowerCase(), nameValue);
131 if (nameValueMap.size() != other.nameValueMap.size()) {
134 Iterator<String> li = this.nameValueMap.keySet().iterator();
139 Collection nv2 = (Collection) other.nameValueMap.get(key);
164 return (Collection) this.nameValueMap.get(name.toLowerCase());
171 return nameValueMap.containsKey(name.toLowerCase());
179 if (this.nameValueMap.containsKey(lcName)) {
180 this.nameValueMap.remove(lcName);
191 Iterator<NameValue> it = this.nameValueMap.values().iterator();
204 return this.nameValueMap.values().iterator();
213 return this.nameValueMap.keySet().iterator();
233 nameValueMap.clear();
238 return this.nameValueMap.isEmpty();
242 return (NameValue) this.nameValueMap.put(key, value);
246 return (NameValue) this.nameValueMap.remove(key);
250 return this.nameValueMap.size();
254 return this.nameValueMap.values();
258 return this.nameValueMap.keySet().hashCode();