Example usage for com.google.gwt.corp.compatibility Endianness LITTLE_ENDIAN

List of usage examples for com.google.gwt.corp.compatibility Endianness LITTLE_ENDIAN

Introduction

In this page you can find the example usage for com.google.gwt.corp.compatibility Endianness LITTLE_ENDIAN.

Prototype

Endianness LITTLE_ENDIAN

To view the source code for com.google.gwt.corp.compatibility Endianness LITTLE_ENDIAN.

Click Source Link

Usage

From source file:java.nio.ByteBuffer.java

License:Apache License

ByteBuffer orderImpl(ByteOrder byteOrder) {
    order = byteOrder == ByteOrder.BIG_ENDIAN ? Endianness.BIG_ENDIAN : Endianness.LITTLE_ENDIAN;
    return this;
}