All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.deephaven.csv.util.MutableBoolean Maven / Gradle / Ivy

package io.deephaven.csv.util;

/**
 * A simple wrapper class, inspired by the similar class in Apache Commons.
 */
public final class MutableBoolean {
    private boolean value;

    public void setValue(boolean newValue) {
        value = newValue;
    }

    public boolean booleanValue() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy