Home | History | Annotate | Download | only in base

Lines Matching full:code

25  * {@code RegexPredicate} might implement {@code Predicate<String>}, and return
26 * {@code true} for any string that matches its given regular expression.
46 * @return the value of this predicate when applied to the input {@code t}
51 * Indicates whether some other object is equal to this {@code Predicate}.
52 * This method can return {@code true} <i>only</i> if the specified object is
53 * also a {@code Predicate} and, for every input object {@code input}, it
54 * returns exactly the same value. Thus, {@code predicate1.equals(predicate2)}
55 * implies that either {@code predicate1.apply(input)} and
56 * {@code predicate2.apply(input)} are both {@code true} or both
57 * {@code false}.