Interface ChunkBoxer.BoxerKernel

All Superinterfaces:
AutoCloseable, Context, SafeCloseable
Enclosing class:
ChunkBoxer

public static interface ChunkBoxer.BoxerKernel extends Context
Return a chunk that contains boxed Objects representing the primitive values in values.
  • Method Summary

    Modifier and Type
    Method
    Description
    ObjectChunk<?,? extends Values>
    box(Chunk<? extends Values> values)
    Box all values into Objects if they are not already Objects.

    Methods inherited from interface io.deephaven.engine.table.Context

    close
  • Method Details

    • box

      ObjectChunk<?,? extends Values> box(Chunk<? extends Values> values)
      Box all values into Objects if they are not already Objects.
      Parameters:
      values - the values to box
      Returns:
      a chunk containing values as Objects (not owned by the caller)