Uses of Interface
org.apache.commons.io.function.IOComparator
Package
Description
Provides IO-only related functional interfaces for lambda expressions and method references.
-
Uses of IOComparator in org.apache.commons.io.function
Modifier and TypeMethodDescriptionstatic <T> int
Uncheck.compare
(IOComparator<T> comparator, T t, T u) Compares the arguments with the comparator.IOStream.max
(IOComparator<? super T> comparator) static <T> IOBinaryOperator<T>
IOBinaryOperator.maxBy
(IOComparator<? super T> comparator) Creates aIOBinaryOperator
which returns the greater of two elements according to the specifiedComparator
.IOStream.min
(IOComparator<? super T> comparator) static <T> IOBinaryOperator<T>
IOBinaryOperator.minBy
(IOComparator<? super T> comparator) Creates aIOBinaryOperator
which returns the lesser of two elements according to the specifiedComparator
.IOStream.sorted
(IOComparator<? super T> comparator)