* @param minInclusive is the minimum inclusive in the range
* @param maxInclusive is the maximum inclusive in the range
* @return criteria instance
*/
public Criteria between(T min, T max, boolean minInclusive, boolean maxInclusive) {
return new Between(attributeName, min, max, minInclusive, maxInclusive);
}