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

org.mentabean.util.Limit Maven / Gradle / Ivy

There is a newer version: 2.2.4
Show newest version
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);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy