![JAR search and dependency download from the Maven repository](/logo.png)
org.apache.juneau.internal.Flag Maven / Gradle / Ivy
// ***************************************************************************************************************************
// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file *
// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file *
// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance *
// * with the License. You may obtain a copy of the License at *
// * *
// * http://www.apache.org/licenses/LICENSE-2.0 *
// * *
// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an *
// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the *
// * specific language governing permissions and limitations under the License. *
// ***************************************************************************************************************************
package org.apache.juneau.internal;
import static org.apache.juneau.common.internal.ThrowableUtils.*;
import org.apache.juneau.common.utils.*;
/**
* A simple settable boolean value.
*/
public final class Flag {
private boolean value;
/**
* Creates a boolean value initialized to false .
*
* @return A new boolean value.
*/
public static Flag create() {
return of(false);
}
/**
* Creates a boolean value with the specified initial state.
*
* @param value The initial state of the value.
* @return A new boolean value.
*/
public static Flag of(boolean value) {
return new Flag(value);
}
private Flag(boolean value) {
this.value = value;
}
/**
* Runs a snippet of code if the boolean value is true .
*
* Example:
*
* BoolValue flag = BoolValue.create ();
* ...
* flag .ifSet(()->doSomething ());
*
*
* @param snippet The snippet of code to run.
* @return This object.
*/
public Flag ifSet(Snippet snippet) {
if (value)
runSnippet(snippet);
return this;
}
/**
* Runs a snippet of code if the boolean value is false .
*
* Example:
*
* BoolValue flag = BoolValue.create ();
* ...
* flag .ifNotSet(()->doSomething ());
*
*
* @param snippet The snippet of code to run.
* @return This object.
*/
public Flag ifNotSet(Snippet snippet) {
if (! value)
runSnippet(snippet);
return this;
}
private void runSnippet(Snippet snippet) {
try {
snippet.run();
} catch (Error | RuntimeException e) {
throw e;
} catch (Throwable e) {
throw asRuntimeException(e);
}
}
/**
* Sets the boolean value to true and returns the value before it was set.
*
* @return The previous value.
*/
public boolean getAndSet() {
boolean b = value;
value = true;
return b;
}
/**
* Sets the boolean value to false and returns the value before it was set.
*
* @return The previous value.
*/
public boolean getAndUnset() {
boolean v = value;
value = false;
return v;
}
/**
* Sets the boolean value to true .
*
* @return This object.
*/
public Flag set() {
value = true;
return this;
}
/**
* Sets the boolean value to false .
*
* @return This object.
*/
public Flag unset() {
value = false;
return this;
}
/**
* Returns true if the boolean value is true .
*
* @return true if the boolean value is true .
*/
public boolean isSet() {
return value;
}
/**
* Returns true if the boolean value is false .
*
* @return true if the boolean value is false .
*/
public boolean isUnset() {
return ! value;
}
/**
* Sets the boolean value to true if the value is true .
*
* @param value The value to set.
* @return This object.
*/
public Flag setIf(boolean value) {
this.value |= value;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy