From 15b75d1e56c3c47c219ebd080f73c6e494ac7c41 Mon Sep 17 00:00:00 2001 From: "Ray J. Greenwell" Date: Tue, 30 Apr 2013 22:41:47 -0700 Subject: [PATCH] Add addAll(Mapmap to the parameters being constructed. + */ + public QueryBuilder addAll (Map map) + { + for (Map.Entry entry : map.entrySet()) { + add(String.valueOf(entry.getKey()), entry.getValue()); + } + return this; + } + /** * Appends the query in this builder to the given StringBuilder with a question mark. */