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

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

package io.deephaven.csv.util;

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

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

    public float floatValue() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy