public interface CharPredicate extends Throwables.CharPredicate<RuntimeException>
| Modifier and Type | Field and Description |
|---|---|
static CharPredicate |
ALWAYS_FALSE |
static CharPredicate |
ALWAYS_TRUE |
static CharPredicate |
IS_ZERO |
static CharPredicate |
NOT_ZERO |
| Modifier and Type | Method and Description |
|---|---|
default CharPredicate |
and(CharPredicate other) |
static CharPredicate |
between(char minValue,
char maxValue) |
static CharPredicate |
equal(char targetChar) |
static CharPredicate |
greaterEqual(char targetChar) |
static CharPredicate |
greaterThan(char targetChar) |
static CharPredicate |
lessEqual(char targetChar) |
static CharPredicate |
lessThan(char targetChar) |
default CharPredicate |
negate() |
static CharPredicate |
notEqual(char targetChar) |
static CharPredicate |
of(CharPredicate predicate)
Returns the specified instance
|
default CharPredicate |
or(CharPredicate other) |
boolean |
test(char value) |
static final CharPredicate ALWAYS_TRUE
static final CharPredicate ALWAYS_FALSE
static final CharPredicate IS_ZERO
static final CharPredicate NOT_ZERO
boolean test(char value)
test in interface Throwables.CharPredicate<RuntimeException>static CharPredicate of(CharPredicate predicate)
predicate - default CharPredicate negate()
default CharPredicate and(CharPredicate other)
default CharPredicate or(CharPredicate other)
static CharPredicate equal(char targetChar)
static CharPredicate notEqual(char targetChar)
static CharPredicate greaterThan(char targetChar)
static CharPredicate greaterEqual(char targetChar)
static CharPredicate lessThan(char targetChar)
static CharPredicate lessEqual(char targetChar)
static CharPredicate between(char minValue, char maxValue)
Copyright © 2021. All rights reserved.