net.dongliu.commons.lang.wrapper.Byte Maven / Gradle / Ivy
package net.dongliu.commons.lang.wrapper;
/**
* @author Dong Liu
*/
public class Byte {
public byte value;
public Byte(byte value) {
this.value = value;
}
}
package net.dongliu.commons.lang.wrapper;
/**
* @author Dong Liu
*/
public class Byte {
public byte value;
public Byte(byte value) {
this.value = value;
}
}