Home | History | Annotate | Download | only in core

Lines Matching defs:nameValue

46     private MultiValueMapImpl<NameValue> nameValueMap = new MultiValueMapImpl<NameValue>();
75 Iterator<NameValue> iterator = nameValueMap.values().iterator();
100 * Set a namevalue object in this list.
103 public void set(NameValue nv) {
108 * Set a namevalue object in this list.
111 NameValue nameValue = new NameValue(name, value);
112 nameValueMap.put(name.toLowerCase(), nameValue);
117 * Compare if two NameValue lists are equal.
160 * Get the NameValue record given a name.
191 Iterator<NameValue> it = this.nameValueMap.values().iterator();
193 retval.set((NameValue) ((NameValue) it.next()).clone());
203 public Iterator<NameValue> iterator() {
241 public NameValue put(String key, NameValue value) {
242 return (NameValue) this.nameValueMap.put(key, value);
245 public NameValue remove(Object key) {
246 return (NameValue) this.nameValueMap.remove(key);
253 public Collection<NameValue> values() {