
net.dongliu.commons.lang.wrapper.Int Maven / Gradle / Ivy
The 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 - 2025 Weber Informatics LLC | Privacy Policy