From: Roland Haeder Date: Fri, 14 Aug 2015 13:16:29 +0000 (+0200) Subject: Added addToDataSet() for Boolean values X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=8ae34ed7cbb5903ff9766eec089cd28a6bcc96d4;p=jcore.git Added addToDataSet() for Boolean values Signed-off-by:Roland Häder --- 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.