Uses of Interface
org.apache.sshd.common.util.functors.UnaryEquator
-
Packages that use UnaryEquator Package Description org.apache.sshd.common.util org.apache.sshd.common.util.functors -
-
Uses of UnaryEquator in org.apache.sshd.common.util
Methods in org.apache.sshd.common.util with parameters of type UnaryEquator Modifier and Type Method Description static <T> int
GenericUtils. findFirstDifferentValueIndex(Iterable<? extends T> c1, Iterable<? extends T> c2, UnaryEquator<? super T> equator)
static <T> int
GenericUtils. findFirstDifferentValueIndex(Iterator<? extends T> i1, Iterator<? extends T> i2, UnaryEquator<? super T> equator)
static <T> int
GenericUtils. findFirstDifferentValueIndex(List<? extends T> c1, List<? extends T> c2, UnaryEquator<? super T> equator)
-
Uses of UnaryEquator in org.apache.sshd.common.util.functors
Methods in org.apache.sshd.common.util.functors that return UnaryEquator Modifier and Type Method Description default UnaryEquator<T>
UnaryEquator. and(UnaryEquator<? super T> other)
Returns a composed equator that represents a short-circuiting logical AND of this equator and another.static <T> UnaryEquator<T>
UnaryEquator. comparing(Comparator<? super T> c)
static <T> UnaryEquator<T>
UnaryEquator. defaultEquality()
static <T> UnaryEquator<T>
UnaryEquator. falsum()
default UnaryEquator<T>
UnaryEquator. negate()
default UnaryEquator<T>
UnaryEquator. or(UnaryEquator<? super T> other)
Returns a composed equator that represents a short-circuiting logical AND of this equator and another.static <T> UnaryEquator<T>
UnaryEquator. referenceEquality()
static <T> UnaryEquator<T>
UnaryEquator. verum()
Methods in org.apache.sshd.common.util.functors with parameters of type UnaryEquator Modifier and Type Method Description default UnaryEquator<T>
UnaryEquator. and(UnaryEquator<? super T> other)
Returns a composed equator that represents a short-circuiting logical AND of this equator and another.default UnaryEquator<T>
UnaryEquator. or(UnaryEquator<? super T> other)
Returns a composed equator that represents a short-circuiting logical AND of this equator and another.
-