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