Class ByteArrayLexOrder
- java.lang.Object
-
- com.github.toolarium.security.certificate.rsa.der.comparator.ByteArrayLexOrder
-
- All Implemented Interfaces:
java.util.Comparator<byte[]>
public class ByteArrayLexOrder extends java.lang.Object implements java.util.Comparator<byte[]>Compare two byte arrays in lexicographical order.
-
-
Constructor Summary
Constructors Constructor Description ByteArrayLexOrder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intcompare(byte[] bytes1, byte[] bytes2)Perform lexicographical comparison of two byte arrays, regarding each byte as unsigned.
-
-
-
Method Detail
-
compare
public final int compare(byte[] bytes1, byte[] bytes2)Perform lexicographical comparison of two byte arrays, regarding each byte as unsigned. That is, compare array entries in order until they differ--the array with the smaller entry is "smaller". If array entries are equal till one array ends, then the longer array is "bigger".- Specified by:
comparein interfacejava.util.Comparator<byte[]>- Parameters:
bytes1- first byte array to compare.bytes2- second byte array to compare.- Returns:
- negative number if obj1 < obj2, 0 if obj1 == obj2, positive number if obj1 > obj2.
-
-