Uses of Class
org.jjoost.util.filters.AcceptBetween

Packages that use AcceptBetween
org.jjoost.util.filters   
 

Uses of AcceptBetween in org.jjoost.util.filters
 

Methods in org.jjoost.util.filters that return AcceptBetween
static
<E extends java.lang.Comparable<? super E>>
AcceptBetween<E>
AcceptBetween.get(E lb, boolean lbIsInclusive, E ub, boolean ubIsInclusive)
          Returns a filter that accepts everything between the provided lower and upper bounds, as determined by the Comparator provided to its methods.
static
<E extends java.lang.Comparable<? super E>>
AcceptBetween<E>
AcceptBetween.get(E lb, E ub)
          Returns a partial order filter that accepts everything greater than or equal to the provided lower bound (first argument) and everything strictly less than the provided upper bound (second argument), as determined by the Comparator provided to its methods by utilising classes.