Class ByteOrder


  • public final class ByteOrder
    extends Object
    A typesafe enumeration for byte orders.
    Since:
    3.1
    • Field Detail

      • BIG_ENDIAN

        public static final ByteOrder BIG_ENDIAN
        Constant denoting big-endian byte order. In this order, the bytes of a multibyte value are ordered from most significant to least significant.

        This instance of ByteOrder is a permanent Java Card runtime environment Entry Point Objects and can be accessed from any context.

      • LITTLE_ENDIAN

        public static final ByteOrder LITTLE_ENDIAN
        Constant denoting little-endian byte order. In this order, the bytes of a multibyte value are ordered from least significant to most significant.

        This instance of ByteOrder is a permanent Java Card runtime environment Entry Point Objects and can be accessed from any context.