In java class Bytes I have:
public final static Comparator<byte []> BYTES_COMPARATOR = new ByteArrayComparator();
From ruby, how can I access the above field ? I tried
Bytes:BYTES_COMPARATOR
Bytes.BYTES_COMPARATOR
Neither of the above worked.
Hint is appreciated