blob: 08290a382aab59f64287dfc76bea78835b339371 [file] [log] [blame]
Yuta HIGUCHI1ef85c42014-01-29 17:23:21 -08001package net.onrc.onos.datastore.utils;
2
3import java.nio.ByteBuffer;
4import java.util.Comparator;
5
6public final class ByteArrayComparator implements Comparator<byte[]> {
7
8 public static final ByteArrayComparator BYTEARRAY_COMPARATOR = new ByteArrayComparator();
9
10 @Override
11 public int compare(byte[] o1, byte[] o2) {
12 final ByteBuffer b1 = ByteBuffer.wrap(o1);
13 final ByteBuffer b2 = ByteBuffer.wrap(o2);
14 return b1.compareTo(b2);
15 }
16}