Package it.unimi.dsi.fastutil.chars
Interface CharComparator
-
- All Superinterfaces:
java.util.Comparator<java.lang.Character>
- All Known Implementing Classes:
AbstractCharComparator
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface CharComparator extends java.util.Comparator<java.lang.Character>A type-specificComparator; provides methods to compare two primitive types both as objects and as primitive types.Note that
fastutilprovides a corresponding abstract class that can be used to implement this interface just by specifying the type-specific comparator.- See Also:
Comparator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description intcompare(char k1, char k2)Compares its two primitive-type arguments for order.default intcompare(java.lang.Character ok1, java.lang.Character ok2)Deprecated.Please use the corresponding type-specific method instead.default CharComparatorreversed()default CharComparatorthenComparing(CharComparator second)Return a new comparator that first uses this comparator, then uses the second comparator if this comparator compared the two elements as equal.default java.util.Comparator<java.lang.Character>thenComparing(java.util.Comparator<? super java.lang.Character> second)
-
-
-
Method Detail
-
compare
int compare(char k1, char k2)Compares its two primitive-type arguments for order. Returns a negative integer, zero, or a positive integer as the first argument is less than, equal to, or greater than the second.- Returns:
- a negative integer, zero, or a positive integer as the first argument is less than, equal to, or greater than the second.
- See Also:
Comparator
-
reversed
default CharComparator reversed()
- Specified by:
reversedin interfacejava.util.Comparator<java.lang.Character>
-
compare
@Deprecated default int compare(java.lang.Character ok1, java.lang.Character ok2)Deprecated.Please use the corresponding type-specific method instead.- Specified by:
comparein interfacejava.util.Comparator<java.lang.Character>- Implementation Specification:
- This implementation delegates to the corresponding type-specific method.
-
thenComparing
default CharComparator thenComparing(CharComparator second)
Return a new comparator that first uses this comparator, then uses the second comparator if this comparator compared the two elements as equal.- See Also:
Comparator.thenComparing(Comparator)
-
thenComparing
default java.util.Comparator<java.lang.Character> thenComparing(java.util.Comparator<? super java.lang.Character> second)
- Specified by:
thenComparingin interfacejava.util.Comparator<java.lang.Character>
-
-