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

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

    public Short() {
    }

    public Short(short value) {
        this.value = value;
    }

    public short value() {
        return value;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy