Class SQL_TIMESTAMP_STRUCT.Buffer

All Implemented Interfaces:
AutoCloseable, Iterable<SQL_TIMESTAMP_STRUCT>, NativeResource, Pointer
Enclosing class:
SQL_TIMESTAMP_STRUCT

public static class SQL_TIMESTAMP_STRUCT.Buffer extends StructBuffer<SQL_TIMESTAMP_STRUCT,SQL_TIMESTAMP_STRUCT.Buffer> implements NativeResource
An array of SQL_TIMESTAMP_STRUCT structs.
  • Constructor Details

    • Buffer

      public Buffer(ByteBuffer container)
      Creates a new SQL_TIMESTAMP_STRUCT.Buffer instance backed by the specified container.

      Changes to the container's content will be visible to the struct buffer instance and vice versa. The two buffers' position, limit, and mark values will be independent. The new buffer's position will be zero, its capacity and its limit will be the number of bytes remaining in this buffer divided by SQL_TIMESTAMP_STRUCT.SIZEOF, and its mark will be undefined.

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

    • Buffer

      public Buffer(long address, int cap)
  • Method Details

    • year

      public short year()
      Returns:
      the value of the year field.
    • month

      public short month()
      Returns:
      the value of the month field.
    • day

      public short day()
      Returns:
      the value of the day field.
    • hour

      public short hour()
      Returns:
      the value of the hour field.
    • minute

      public short minute()
      Returns:
      the value of the minute field.
    • second

      public short second()
      Returns:
      the value of the second field.
    • fraction

      public int fraction()
      Returns:
      the value of the fraction field.
    • year

      public SQL_TIMESTAMP_STRUCT.Buffer year(short value)
      Sets the specified value to the year field.
    • month

      public SQL_TIMESTAMP_STRUCT.Buffer month(short value)
      Sets the specified value to the month field.
    • day

      public SQL_TIMESTAMP_STRUCT.Buffer day(short value)
      Sets the specified value to the day field.
    • hour

      public SQL_TIMESTAMP_STRUCT.Buffer hour(short value)
      Sets the specified value to the hour field.
    • minute

      public SQL_TIMESTAMP_STRUCT.Buffer minute(short value)
      Sets the specified value to the minute field.
    • second

      public SQL_TIMESTAMP_STRUCT.Buffer second(short value)
      Sets the specified value to the second field.
    • fraction

      public SQL_TIMESTAMP_STRUCT.Buffer fraction(int value)
      Sets the specified value to the fraction field.