Class XTimeCoord

All Implemented Interfaces:
Pointer

public class XTimeCoord extends Struct<XTimeCoord>

 struct XTimeCoord {
     Time time;
     short x;
     short y;
 }
  • Field Details

    • SIZEOF

      public static final int SIZEOF
      The struct size in bytes.
    • ALIGNOF

      public static final int ALIGNOF
      The struct alignment in bytes.
    • TIME

      public static final int TIME
      The struct member offsets.
    • X

      public static final int X
      The struct member offsets.
    • Y

      public static final int Y
      The struct member offsets.
  • Constructor Details

    • XTimeCoord

      public XTimeCoord(ByteBuffer container)
      Creates a XTimeCoord instance at the current position of the specified ByteBuffer container. Changes to the buffer's content will be visible to the struct instance and vice versa.

      The created instance holds a strong reference to the container object.

  • Method Details

    • sizeof

      public int sizeof()
      Description copied from class: Struct
      Returns sizeof(struct).
      Specified by:
      sizeof in class Struct<XTimeCoord>
    • time

      public long time()
      Returns:
      the value of the time field.
    • x

      public short x()
      Returns:
      the value of the x field.
    • y

      public short y()
      Returns:
      the value of the y field.
    • create

      public static XTimeCoord create(long address)
      Returns a new XTimeCoord instance for the specified memory address.
    • createSafe

      public static @Nullable XTimeCoord createSafe(long address)
      Like create, but returns null if address is NULL.
    • create

      public static XTimeCoord.Buffer create(long address, int capacity)
      Create a XTimeCoord.Buffer instance at the specified memory.
      Parameters:
      address - the memory address
      capacity - the buffer capacity
    • createSafe

      public static @Nullable XTimeCoord.Buffer createSafe(long address, int capacity)
      Like create, but returns null if address is NULL.
    • ntime

      public static long ntime(long struct)
      Unsafe version of time().
    • nx

      public static short nx(long struct)
      Unsafe version of x().
    • ny

      public static short ny(long struct)
      Unsafe version of y().