From 8ae34ed7cbb5903ff9766eec089cd28a6bcc96d4 Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Fri, 14 Aug 2015 15:16:29 +0200 Subject: [PATCH] =?utf8?q?Added=20addToDataSet()=20for=20Boolean=20values?= =?utf8?q?=20Signed-off-by:Roland=20H=C3=A4der=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .../frontend/BaseDatabaseFrontend.java | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/src/org/mxchange/jcore/database/frontend/BaseDatabaseFrontend.java b/src/org/mxchange/jcore/database/frontend/BaseDatabaseFrontend.java index c45f31f..b030873 100644 --- a/src/org/mxchange/jcore/database/frontend/BaseDatabaseFrontend.java +++ b/src/org/mxchange/jcore/database/frontend/BaseDatabaseFrontend.java @@ -118,6 +118,32 @@ public abstract class BaseDatabaseFrontend extends BaseFrameworkSystem implement this.getLogger().trace("EXIT!"); } + /** + * Adds given key-value pair for any boolean to dataset instance. Both must not be null. + * + * @param key Key to set + * @param value Value to set + */ + protected void addToDataSet (final String key, final Boolean value) { + // Trace message + this.getLogger().trace(MessageFormat.format("key={0},value={1} - CALLED!", key, value)); + + // Is key/value null? + if (key == null) { + // Key is null + throw new NullPointerException("key is null"); + } else if (value == null) { + // Key is null + throw new NullPointerException("value is null"); + } + + // Add it to map + this.dataset.put(key, value); + + // Trace message + this.getLogger().trace("EXIT!"); + } + /** * Clears dataset instance. You should call this before you use it for * inserting data into your database. -- 2.39.2