summaryrefslogtreecommitdiff
path: root/src/de/lmu/ifi/dbs/elki/utilities/optionhandling/parameters/Flag.java
diff options
context:
space:
mode:
authorAndrej Shadura <andrewsh@debian.org>2019-03-09 22:30:28 +0000
committerAndrej Shadura <andrewsh@debian.org>2019-03-09 22:30:28 +0000
commitcde76aeb42240f7270bc6605c606ae07d2dc5a7d (patch)
treec3ebf1d7745224f524da31dbabc5d76b9ea75916 /src/de/lmu/ifi/dbs/elki/utilities/optionhandling/parameters/Flag.java
Import Upstream version 0.4.0~beta1
Diffstat (limited to 'src/de/lmu/ifi/dbs/elki/utilities/optionhandling/parameters/Flag.java')
-rw-r--r--src/de/lmu/ifi/dbs/elki/utilities/optionhandling/parameters/Flag.java142
1 files changed, 142 insertions, 0 deletions
diff --git a/src/de/lmu/ifi/dbs/elki/utilities/optionhandling/parameters/Flag.java b/src/de/lmu/ifi/dbs/elki/utilities/optionhandling/parameters/Flag.java
new file mode 100644
index 00000000..5484ab8b
--- /dev/null
+++ b/src/de/lmu/ifi/dbs/elki/utilities/optionhandling/parameters/Flag.java
@@ -0,0 +1,142 @@
+package de.lmu.ifi.dbs.elki.utilities.optionhandling.parameters;
+/*
+This file is part of ELKI:
+Environment for Developing KDD-Applications Supported by Index-Structures
+
+Copyright (C) 2011
+Ludwig-Maximilians-Universität München
+Lehr- und Forschungseinheit für Datenbanksysteme
+ELKI Development Team
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU Affero 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 Affero General Public License for more details.
+
+You should have received a copy of the GNU Affero General Public License
+along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+import de.lmu.ifi.dbs.elki.utilities.exceptions.AbortException;
+import de.lmu.ifi.dbs.elki.utilities.optionhandling.OptionID;
+import de.lmu.ifi.dbs.elki.utilities.optionhandling.ParameterException;
+import de.lmu.ifi.dbs.elki.utilities.optionhandling.WrongParameterValueException;
+
+/**
+ * Option class specifying a flag object.
+ * <p/>
+ * A flag object is optional parameter which can be set (value &quot;true&quot;)
+ * or not (value &quot;false&quot;).
+ *
+ * @author Steffi Wanka
+ * @author Erich Schubert
+ */
+public class Flag extends Parameter<Boolean, Boolean> {
+ /**
+ * Constant indicating that the flag is set.
+ */
+ public static final String SET = "true";
+
+ /**
+ * Constant indicating that the flag is not set.
+ */
+ public static final String NOT_SET = "false";
+
+ /**
+ * Constructs a flag object with the given optionID.
+ * <p/>
+ * If the flag is not set its value is &quot;false&quot;.
+ *
+ * @param optionID the unique id of the option
+ */
+ public Flag(OptionID optionID) {
+ super(optionID);
+ setOptional(true);
+ setDefaultValue(false);
+ }
+
+ @Override
+ protected Boolean parseValue(Object obj) throws ParameterException {
+ if(SET.equals(obj)) {
+ return true;
+ }
+ if(NOT_SET.equals(obj)) {
+ return false;
+ }
+ if(obj instanceof Boolean) {
+ return (Boolean) obj;
+ }
+ if(obj != null && SET.equals(obj.toString())) {
+ return true;
+ }
+ if(obj != null && NOT_SET.equals(obj.toString())) {
+ return false;
+ }
+ throw new WrongParameterValueException("Wrong value for flag \"" + getName() + "\". Allowed values:\n" + SET + " or " + NOT_SET);
+ }
+
+ /**
+ * A flag has no syntax, since it doesn't take extra options
+ */
+ @Override
+ public String getSyntax() {
+ return "<|" + SET + "|" + NOT_SET + ">";
+ }
+
+ /** {@inheritDoc} */
+ @Override
+ public String getValueAsString() {
+ return getValue() ? SET : NOT_SET;
+ }
+
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ protected boolean validate(Boolean obj) throws ParameterException {
+ if(obj == null) {
+ throw new WrongParameterValueException("Boolean option '" + getName() + "' got 'null' value.");
+ }
+ return true;
+ }
+
+ /**
+ * Convenience function using a native boolean, that doesn't require error
+ * handling.
+ *
+ * @param val boolean value
+ */
+ public void setValue(boolean val) {
+ try {
+ super.setValue(val);
+ }
+ catch(ParameterException e) {
+ // We're pretty sure that any Boolean is okay, so this should never be
+ // reached.
+ throw new AbortException("Flag did not accept boolean value!", e);
+ }
+ }
+
+ /**
+ * Shorthand for {@code isDefined() && getValue() == true}
+ *
+ * @return true when defined and true.
+ */
+ public boolean isTrue() {
+ return isDefined() && getValue();
+ }
+
+ /**
+ * Shorthand for {@code isDefined() && getValue() == false}
+ *
+ * @return true when defined and true.
+ */
+ public boolean isFalse() {
+ return isDefined() && !getValue();
+ }
+} \ No newline at end of file