order method

ByteBuffer order(
  1. ByteOrder order
)

Sets this buffer's byte order

Implementation

ByteBuffer order(ByteOrder order) {
  _byteOrder = order;
  return this;
}