Uses of Interface
org.jjoost.util.filters.BothFilter

Packages that use BothFilter
org.jjoost.util   
org.jjoost.util.filters   
 

Uses of BothFilter in org.jjoost.util
 

Methods in org.jjoost.util that return BothFilter
static
<E,F extends Filter<? super E> & FilterPartialOrder<E>>
BothFilter<E>
Filters.and(F... filters)
          Returns the conjunction (i.e.
static
<E,F extends Filter<? super E> & FilterPartialOrder<E>>
BothFilter<E>
Filters.and(F a, F b)
          Returns the conjunction (i.e.
static
<E,F extends Filter<? super E> & FilterPartialOrder<E>>
BothFilter<E>
Filters.and(java.lang.Iterable<? extends F> filters)
          Returns the conjunction (i.e.
static
<E extends java.lang.Comparable<? super E>>
BothFilter<E>
Filters.isBetween(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>>
BothFilter<E>
Filters.isBetween(E lb, E ub)
          Returns a 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.
static
<E> BothFilter<E>
Filters.isEqualTo(E val)
          Returns a filter accepting only values equal to the one provided, using default object equality.
static
<E> BothFilter<E>
Filters.isEqualTo(E val, Equality<? super E> equality)
          Returns a filter accepting only values equal to the one provided, using the provided equality.
static
<E extends java.lang.Comparable<? super E>>
BothFilter<E>
Filters.isGreater(E val)
          Returns a partial order filter that accepts everything greater than the provided value as determined by the Comparator provided to its methods by utilising classes.
static
<E extends java.lang.Comparable<? super E>>
BothFilter<E>
Filters.isGreaterEq(E val)
          Returns a partial order filter that accepts everything greater than or equal to the provided value as determined by the Comparator provided to its methods by utilising classes.
static
<E extends java.lang.Comparable<? super E>>
BothFilter<E>
Filters.isLess(E val)
          Returns a partial order filter that accepts everything less than the provided value as determined by the Comparator provided to its methods by utilising classes.
static
<E extends java.lang.Comparable<? super E>>
BothFilter<E>
Filters.isLessEq(E val)
          Returns a partial order filter that accepts everything less than or equal to the provided value as determined by the Comparator provided to its methods by utilising classes.
static
<E,F extends Filter<? super E> & FilterPartialOrder<E>>
BothFilter<E>
Filters.not(F filter)
          Returns the negation of the supplied filter implementing both Filter and PartialOrder.
static
<E,F extends Filter<? super E> & FilterPartialOrder<E>>
BothFilter<E>
Filters.or(F... filters)
          Returns the disjunction (i.e.
static
<E,F extends Filter<? super E> & FilterPartialOrder<E>>
BothFilter<E>
Filters.or(F a, F b)
          Returns the disjunction (i.e.
static
<E,F extends Filter<? super E> & FilterPartialOrder<E>>
BothFilter<E>
Filters.or(java.lang.Iterable<? extends F> filters)
          Returns the disjunction (i.e.
 

Uses of BothFilter in org.jjoost.util.filters
 

Classes in org.jjoost.util.filters that implement BothFilter
 class AcceptAll<E>
          A filter that accepts everything (i.e.
 class AcceptBetween<E extends Comparable<? super E>>
          A filter that accepts everything between the provided lower and upper bounds, as determined by the Comparator provided to its methods.
 class AcceptEqual<E>
          A filter accepting only values equal to the one provided, using the provided definition of equality.
 class AcceptGreater<E extends Comparable<? super E>>
          A partial order filter that accepts everything greater than the provided value as determined by the Comparator provided to its methods by utilising classes.
 class AcceptGreaterEqual<E extends Comparable<? super E>>
          A partial order filter that accepts everything greater than or equal to the provided value, as determined by the Comparator provided to its methods by utilising classes.
 class AcceptLess<E extends Comparable<? super E>>
          A partial order filter that accepts everything less than the provided value as determined by the Comparator provided to its methods by utilising classes.
 class AcceptLessEqual<E extends Comparable<? super E>>
          A partial order filter that accepts everything less than or equal to the provided value, as determined by the Comparator provided to its methods by utilising classes.
 class AcceptNone<E>
          A filter that accepts nothing (i.e.
 class BothFilterAnd<E,F extends Filter<? super E> & FilterPartialOrder<E>>
          A filter representing the conjunction (i.e.
 class BothFilterMultiAnd<E,F extends Filter<? super E> & FilterPartialOrder<E>>
          A filter representing the conjunction (i.e.
 class BothFilterMultiOr<E,F extends Filter<? super E> & FilterPartialOrder<E>>
          A filter representing the disjunction (i.e.
 class BothFilterNot<E,F extends Filter<? super E> & FilterPartialOrder<E>>
          A filter negating the supplied filter implementing both Filter and PartialOrder
 class BothFilterOr<E,F extends Filter<? super E> & FilterPartialOrder<E>>
          A filter representing the disjunction (i.e.