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