Class ByteOrder

java.lang.Object
javacardx.framework.nio.ByteOrder

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

    Fields
    Modifier and Type
    Field
    Description
    static final ByteOrder
    Constant denoting big-endian byte order.
    static final ByteOrder
    Constant denoting little-endian byte order.
  • Method Summary

    Methods inherited from class Object

    equals
    Modifier and Type
    Method
    Description
    boolean
    Compares two Objects for equality.
  • Field Details

    • 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.