List of usage examples for java.nio IntBuffer compareTo
public int compareTo(IntBuffer otherBuffer)
From source file:Main.java
public static void main(String[] args) { IntBuffer intBuffer = IntBuffer.allocate(10); intBuffer.put(100);/*from w w w . j av a2s . co m*/ intBuffer.rewind(); IntBuffer intBuffer2 = intBuffer.compact(); System.out.println(intBuffer2.compareTo(intBuffer2)); }