This interface defines constants for the two types of byte
ordering: little- and big-endian.
Little-endian is least significant byte first.
Big-endian is most significant byte first.
This interface defines the constants only. In order to use the
constants in any other class you can either use the fully qualified
name (e.g., EndianType.LITTLE_ENDIAN) or declare this
interface in the implements clause of the class and then access the
identifier directly.
|