@FunctionalInterface
public interface CharBiPredicate
BiPredicate
for char
values.Modifier and Type | Method and Description |
---|---|
default CharBiPredicate |
and(CharBiPredicate predicate)
Combine this predicate with another predicate using "
and " boolean logic. |
default CharBiPredicate |
negate()
Negate this predicate, returning a predicate that always returns the opposite values.
|
default CharBiPredicate |
or(CharBiPredicate predicate)
Combine this predicate with another predicate using "
or " boolean logic. |
boolean |
test(char c1,
char c2)
Test this predicate against the given two
char s. |
boolean test(char c1, char c2)
char
s.default CharBiPredicate negate()
default CharBiPredicate and(CharBiPredicate predicate)
and
" boolean logic.default CharBiPredicate or(CharBiPredicate predicate)
or
" boolean logic.