|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| 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
|
Filters.and(F... filters)
Returns the conjunction (i.e. |
|
static
|
Filters.and(F a,
F b)
Returns the conjunction (i.e. |
|
static
|
Filters.and(java.lang.Iterable<? extends F> filters)
Returns the conjunction (i.e. |
|
static
|
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
|
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
|
Filters.isEqualTo(E val)
Returns a filter accepting only values equal to the one provided, using default object equality. |
|
static
|
Filters.isEqualTo(E val,
Equality<? super E> equality)
Returns a filter accepting only values equal to the one provided, using the provided equality. |
|
static
|
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
|
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
|
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
|
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
|
Filters.not(F filter)
Returns the negation of the supplied filter implementing both Filter and PartialOrder. |
|
static
|
Filters.or(F... filters)
Returns the disjunction (i.e. |
|
static
|
Filters.or(F a,
F b)
Returns the disjunction (i.e. |
|
static
|
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. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||