fqlite.pattern.Constraint Maven / Gradle / Ivy
package fqlite.pattern;
/**
* The base interface represents a generic constrain.
*
* Such a constrain normally only needs to have a match() method.
*
* Constrains are used to cover storage classes and serial types
* in SQLite.
*
* @author pawlaszc
*
*/
public interface Constraint {
public boolean match(int value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy