Constructor and Description |
---|
IntPredicate() |
Modifier and Type | Method and Description |
---|---|
abstract boolean |
evaluate(int current)
Evaluates the predicate
|
boolean |
evaluate(Integer arg)
Evaluates the predicate.
|
static IntPredicate |
newEqualsPredicate(int value) |
static IntPredicate |
newLargerThanOrEqualsPredicate(int value) |
static IntPredicate |
newLargerThanPredicate(int value) |
static IntPredicate |
newNotEqualsPredicate(int value) |
static IntPredicate |
newSmallerThanOrEqualsPredicate(int value) |
static IntPredicate |
newSmallerThanPredicate(int value) |
public static IntPredicate newEqualsPredicate(int value)
public static IntPredicate newNotEqualsPredicate(int value)
public static IntPredicate newLargerThanPredicate(int value)
public static IntPredicate newLargerThanOrEqualsPredicate(int value)
public static IntPredicate newSmallerThanPredicate(int value)
public static IntPredicate newSmallerThanOrEqualsPredicate(int value)
public abstract boolean evaluate(int current)
current
- the current value.Copyright © 2020. All rights reserved.