Methods in ix.util with parameters of type Predicate1 |
static java.util.Enumeration |
Seq.filter(java.util.Enumeration e,
Predicate1 p)
Takes an Enumeration e and a Predicate1 p and returns a "wrapper"
Enumeration w such that the elements of w are the corresponding
elements of e, omitting the elements of e for which p.trueOf
returns false. |
static java.util.Collection |
Collect.filter(java.util.Collection c,
Predicate1 p)
Returns a new collection of the same class as the original
and containing only the elements for which the predicate
returned true; |
static java.util.Collection |
Collect.filter(java.lang.Class resultClass,
java.util.Collection c,
Predicate1 p)
Returns a new collection of the specified result class and
and containing only the elements for which the predicate
returned true; |
static Predicate1 |
Fn.negate(Predicate1 p)
Returns a predicate that returns false when the given
predicate returns true, and true when it returns false. |