Class SQL_NUMERIC_STRUCT.Buffer

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

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

    • Buffer

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

    • precision

      public byte precision()
      Returns:
      the value of the precision field.
    • scale

      public byte scale()
      Returns:
      the value of the scale field.
    • sign

      public byte sign()
      Returns:
      the value of the sign field.
    • val

      public ByteBuffer val()
      Returns:
      a ByteBuffer view of the val field.
    • val

      public byte val(int index)
      Returns:
      the value at the specified index of the val field.
    • precision

      public SQL_NUMERIC_STRUCT.Buffer precision(byte value)
      Sets the specified value to the precision field.
    • scale

      public SQL_NUMERIC_STRUCT.Buffer scale(byte value)
      Sets the specified value to the scale field.
    • sign

      public SQL_NUMERIC_STRUCT.Buffer sign(byte value)
      Sets the specified value to the sign field.
    • val

      Copies the specified ByteBuffer to the val field.
    • val

      public SQL_NUMERIC_STRUCT.Buffer val(int index, byte value)
      Sets the specified value at the specified index of the val field.