Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public final class

ByteOrder

extends Object
java.lang.Object
   ↳ java.nio.ByteOrder

Class Overview

Defines byte order constants.

Summary

Fields
public static final ByteOrder BIG_ENDIAN This constant represents big endian.
public static final ByteOrder LITTLE_ENDIAN This constant represents little endian.
Public Methods
static ByteOrder nativeOrder ()
Returns the current platform byte order.
String toString ()
Returns a string that describes this object.
[Expand]
Inherited Methods
From class java.lang.Object

Fields

public static final ByteOrder BIG_ENDIAN

Added in API level 1

This constant represents big endian.

public static final ByteOrder LITTLE_ENDIAN

Added in API level 1

This constant represents little endian.

Public Methods

public static ByteOrder nativeOrder ()

Added in API level 1

Returns the current platform byte order.

Returns
  • the byte order object, which is either LITTLE_ENDIAN or BIG_ENDIAN.

public String toString ()

Added in API level 1

Returns a string that describes this object.

Returns