Android Byte Array Compare compareTo(final byte[] left, final byte[] right)

Here you can find the source of compareTo(final byte[] left, final byte[] right)

Description

compare To

Declaration

public static int compareTo(final byte[] left, final byte[] right) 

Method Source Code

//package com.java2s;

public class Main {
    public static int compareTo(final byte[] left, final byte[] right) {
        return compareTo(left, 0, left.length, right, 0, right.length);
    }/*w w  w. ja  va  2  s  . co m*/

    public static int compareTo(byte[] buffer1, int offset1, int length1,
            byte[] buffer2, int offset2, int length2) {
        // Bring WritableComparator code local
        int end1 = offset1 + length1;
        int end2 = offset2 + length2;
        for (int i = offset1, j = offset2; i < end1 && j < end2; i++, j++) {
            int a = (buffer1[i] & 0xff);
            int b = (buffer2[j] & 0xff);
            if (a != b) {
                return a - b;
            }
        }
        return length1 - length2;
    }
}

Related

  1. compareByteArray(byte[] src, int srcOffset, byte[] dst, int dstOffset, int length)
  2. compareByteArray(byte[] src, int srcOffset, int srcLen, byte[] dst, int dstOffset, int dstLen)
  3. compareNotNull(byte[] data1, byte[] data2)
  4. compareSecure(byte[] test, byte[] good)
  5. compareTo(byte[] buffer1, int offset1, int length1, byte[] buffer2, int offset2, int length2)
  6. areEqual(byte[] a, byte[] b)
  7. compare(byte[] arr1, byte[] arr2)
  8. areByteArraysEqual(byte[] byteArray0, byte[] byteArray1)