Interface ColumnByte.Builder

All Superinterfaces:
Column.Builder
Enclosing interface:
ColumnByte

public static interface ColumnByte.Builder extends Column.Builder
Builder for nullable byte columns.
  • Method Details

    • add

      ColumnByte.Builder add(byte x)
      Appends a byte value.
      Parameters:
      x - the value to append
      Returns:
      this builder
    • add

      default ColumnByte.Builder add(CharSequence chars, int start, int length)
      Description copied from interface: Column.Builder
      Appends a value directly from a character slice.
      Specified by:
      add in interface Column.Builder
      Parameters:
      chars - the source text
      start - the start offset
      length - the slice length
      Returns:
      this builder
    • addNull

      Appends an unset row.
      Returns:
      this builder
    • build

      ColumnByte build()
      Description copied from interface: Column.Builder
      Materialises the current builder contents as an immutable column.
      Specified by:
      build in interface Column.Builder
      Returns:
      the built column