From b96ed0c5e892e08a55bb02dc96680462b03b2aa0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Fri, 8 Apr 2011 14:39:47 +0200 Subject: [PATCH] Add SimpleFieldSet builder. --- .../sone/freenet/SimpleFieldSetBuilder.java | 92 ++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 src/main/java/net/pterodactylus/sone/freenet/SimpleFieldSetBuilder.java diff --git a/src/main/java/net/pterodactylus/sone/freenet/SimpleFieldSetBuilder.java b/src/main/java/net/pterodactylus/sone/freenet/SimpleFieldSetBuilder.java new file mode 100644 index 0000000..a596dcd --- /dev/null +++ b/src/main/java/net/pterodactylus/sone/freenet/SimpleFieldSetBuilder.java @@ -0,0 +1,92 @@ +/* + * Sone - SimpleFieldSetBuilder.java - Copyright © 2011 David Roden + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package net.pterodactylus.sone.freenet; + +import net.pterodactylus.util.validation.Validation; +import freenet.support.SimpleFieldSet; + +/** + * Helper class to construct {@link SimpleFieldSet} objects in a single call. + * + * @author David ‘Bombe’ Roden + */ +public class SimpleFieldSetBuilder { + + /** The simple field set that is being constructed. */ + private final SimpleFieldSet simpleFieldSet; + + /** + * Creates a new simple field set builder using a new, empty simple field + * set. + */ + public SimpleFieldSetBuilder() { + this(new SimpleFieldSet(true)); + } + + /** + * Creates a new simple field set builder that will return the given simple + * field set on {@link #get()}. + * + * @param simpleFieldSet + * The simple field set to build + */ + public SimpleFieldSetBuilder(SimpleFieldSet simpleFieldSet) { + Validation.begin().isNotNull("Simple Field Set", simpleFieldSet).check(); + this.simpleFieldSet = simpleFieldSet; + } + + /** + * Returns the constructed simple field set. + * + * @return The construct simple field set + */ + public SimpleFieldSet get() { + return simpleFieldSet; + } + + /** + * Stores the given value under the given key, overwriting any previous + * value. + * + * @param key + * The key of the value + * @param value + * The value to store + * @return This simple field set builder + */ + public SimpleFieldSetBuilder put(String key, String value) { + simpleFieldSet.putOverwrite(key, value); + return this; + } + + /** + * Stores the given value under the given key, overwriting any previous + * value. + * + * @param key + * The key of the value + * @param value + * The value to store + * @return This simple field set builder + */ + public SimpleFieldSetBuilder put(String key, int value) { + simpleFieldSet.put(key, value); + return this; + } + +} -- 2.7.4