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

net.dongliu.commons.lang.wrapper.Int 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 Int {
    public int value;

    public Int() {
    }

    public Int(int value) {
        this.value = value;
    }

    public int value() {
        return value;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy