org.mentabean.util.Limit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of menta-bean Show documentation
Show all versions of menta-bean Show documentation
An query helper and simple CRUD ORM.
package org.mentabean.util;
public class Limit {
private final int x;
public Limit(int x) {
this.x = x;
}
public int intValue() {
return x;
}
@Override
public String toString() {
return String.valueOf(x);
}
}