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

fqlite.pattern.BLOBConstrain Maven / Gradle / Ivy

package fqlite.pattern;

public class BLOBConstrain implements Constraint {

	@Override
	public boolean match(int value) {
		
		if ((value % 2 == 0) && (value > 12))  // OR 0 ?
			return true;
		return false;
	}
	
	@Override
	public String toString(){
		return ">=12";
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy