LongBuffer.order() has the following syntax.
public abstract ByteOrder order()
In the following code shows how to use LongBuffer.order() method.
import java.nio.LongBuffer; /* www .j a v a 2s. c o m*/ public class Main { public static void main(String[] args) { LongBuffer bb = LongBuffer.allocate(10); bb.put(100); System.out.println(bb.order()); } }
The code above generates the following result.