Home | History | Annotate | Download | only in annotation

Lines Matching refs:pair

150         for (NameValuePair pair : elements.values()) {
156 sb.append(pair.getName().toHuman());
158 sb.append(pair.getValue().toHuman());
188 * @param pair {@code non-null;} the (name, value) pair to place into this instance
190 public void put(NameValuePair pair) {
193 if (pair == null) {
194 throw new NullPointerException("pair == null");
197 elements.put(pair.getName(), pair);
205 * @param pair {@code non-null;} the (name, value) pair to add to this instance
207 public void add(NameValuePair pair) {
210 if (pair == null) {
211 throw new NullPointerException("pair == null");
214 CstUtf8 name = pair.getName();
220 elements.put(name, pair);