Class SQL_TIME_STRUCT.Buffer

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

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

    • Buffer

      public Buffer(ByteBuffer container)
      Creates a new SQL_TIME_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_TIME_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

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

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

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

      public SQL_TIME_STRUCT.Buffer second(short value)
      Sets the specified value to the second field.