Uses of Interface
org.aoju.bus.core.lang.function.XBiPredicate

Packages that use XBiPredicate
Package
Description
函数封装 一个函数接口代表一个函数,用于包装一个函数为对象 在JDK8之前,Java的函数并不能作为参数传递,也不能作为返回值存在,此接口用于将一个函数包装成为对象,从而传递对象
  • Uses of XBiPredicate in org.aoju.bus.core.lang.function

    Modifier and Type
    Method
    Description
    default XBiPredicate<T,U>
    XBiPredicate.and(XBiPredicate<? super T,? super U> other)
    返回一个组合断言,该断言表示此断言与另一个断言的短路逻辑与 在评估组合谓词时,如果此断言为 false,则不评估 other 断言
    default XBiPredicate<T,U>
    XBiPredicate.negate()
    返回表示此断言的逻辑否定的断言
    default XBiPredicate<T,U>
    XBiPredicate.or(XBiPredicate<? super T,? super U> other)
    返回一个组合断言,该断言表示此谓词与另一个断言的短路逻辑或 在评估组合断言时,如果此断言为 true,则不评估 other 断言
    Methods in org.aoju.bus.core.lang.function with parameters of type XBiPredicate
    Modifier and Type
    Method
    Description
    default XBiPredicate<T,U>
    XBiPredicate.and(XBiPredicate<? super T,? super U> other)
    返回一个组合断言,该断言表示此断言与另一个断言的短路逻辑与 在评估组合谓词时,如果此断言为 false,则不评估 other 断言
    default XBiPredicate<T,U>
    XBiPredicate.or(XBiPredicate<? super T,? super U> other)
    返回一个组合断言,该断言表示此谓词与另一个断言的短路逻辑或 在评估组合断言时,如果此断言为 true,则不评估 other 断言