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

fqlite.pattern.IntegerConstraint Maven / Gradle / Ivy

package fqlite.pattern;

public class IntegerConstraint implements Constraint {

	int min = 0;  
	int max = 6;
	
	public IntegerConstraint(boolean notNull)
	{
		if (notNull)
			min = 1;
	}
	
	@Override
	public boolean match(int value) {
		
		if (value <= max  && value >= min)
		{
			return true;
		}
		return false;
	}
	
	@Override
	public String toString(){
		return "0" + min + "..06";
	}


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy