-
- Functional Interface:
- 这是一个功能接口,因此可以用作lambda表达式或方法引用的赋值目标。
@FunctionalInterface public interface LongPredicate
- 从以下版本开始:
- 1.8
- 另请参见:
-
Predicate
-
-
方法摘要
所有方法 实例方法 抽象方法 Default Methods 变量和类型 方法 描述 default LongPredicate
and(LongPredicate other)
返回一个组合谓词,表示此谓词和另一个谓词的短路逻辑AND。default LongPredicate
negate()
返回表示此谓词的逻辑否定的谓词。default LongPredicate
or(LongPredicate other)
返回一个组合谓词,表示此谓词与另一个谓词的短路逻辑OR。boolean
test(long value)
根据给定的参数计算此谓词。
-
-
-
方法详细信息
-
test
boolean test(long value)
根据给定的参数计算此谓词。- 参数
-
value
- 输入参数 - 结果
-
true
如果输入参数与谓词匹配,否则为false
-
and
default LongPredicate and(LongPredicate other)
返回一个组合谓词,表示此谓词和另一个谓词的短路逻辑AND。 在评估组合谓词时,如果此谓词为false
,则不评估other
谓词。在评估任一谓词期间抛出的任何异常都会转发给调用者; 如果对此谓词的评估引发异常,则不会评估
other
谓词。- 参数
-
other
- 将与此谓词进行逻辑AND运算的谓词 - 结果
-
一个组合谓词,表示此谓词和
other
谓词的短路逻辑AND - 异常
-
NullPointerException
- 如果other为null
-
negate
default LongPredicate negate()
返回表示此谓词的逻辑否定的谓词。- 结果
- 表示此谓词的逻辑否定的谓词
-
or
default LongPredicate or(LongPredicate other)
返回一个组合谓词,表示此谓词与另一个谓词的短路逻辑OR。 在评估组合谓词时,如果此谓词为true
,则不评估other
谓词。在评估任一谓词期间抛出的任何异常都会转发给调用者; 如果对此谓词的求值抛出异常,则不会评估
other
谓词。- 参数
-
other
- 将与此谓词进行逻辑或运算的谓词 - 结果
-
一个组合谓词,表示该谓词和
other
谓词的短路逻辑OR - 异常
-
NullPointerException
- 如果other为null
-
-