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

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

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

/**
 * @author Dong Liu
 */
public class Char {
    public char value;

    public Char() {
    }

    public Char(char value) {
        this.value = value;
    }

    public char value() {
        return value;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy