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

net.dongliu.commons.lang.wrapper.Double Maven / Gradle / Ivy

There is a newer version: 2.1.5
Show newest version
package net.dongliu.commons.lang.wrapper;

/**
 * @author Dong Liu
 */
public class Double {
    public double value;

    public Double() {
    }

    public Double(double value) {
        this.value = value;
    }

    public double value() {
        return value;
    }

    public void value(double value) {
        this.value = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy