Package net.algart.arrays
Class JArrays.ByteArrayComparator
java.lang.Object
net.algart.arrays.JArrays.ByteArrayComparator
- All Implemented Interfaces:
ArrayComparator
,ArrayComparator32
- Enclosing class:
JArrays
Simple implementation of
ArrayComparator
, comparing elements of byte[] array.
Note that the elements of byte[] array are supposed to be unsigned:
we always compare array[i] & 0xFF
and array[j] & 0xFF
instead of simple array[i] and array[j].
-
Constructor Summary
ConstructorDescriptionByteArrayComparator
(byte[] array) Creates new comparator, comparing elements of the passed array. -
Method Summary
Modifier and TypeMethodDescriptionboolean
less
(int first, int second) Returns true if, and only if, the element array[(int)first] is less than the element array[(int)second], where array is the argument of the constructor.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface net.algart.arrays.ArrayComparator32
less
-
Constructor Details
-
ByteArrayComparator
public ByteArrayComparator(byte[] array) Creates new comparator, comparing elements of the passed array.- Parameters:
array
- some Java array.- Throws:
NullPointerException
- if the argument is null.
-
-
Method Details
-
less
public boolean less(int first, int second) Returns true if, and only if, the element array[(int)first] is less than the element array[(int)second], where array is the argument of the constructor.- Specified by:
less
in interfaceArrayComparator32
- Parameters:
first
- index of the first compared element.second
- index of the second compared element.- Returns:
- whether the element #first is less than the element #second.
-