Package io.deephaven.engine.table
Interface TupleExporter.ExportElementFunction<TUPLE_TYPE>
- Enclosing interface:
- TupleExporter<TUPLE_TYPE>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
-
Method Summary
Modifier and TypeMethodDescriptionexportElement
(TUPLE_TYPE tuple, int elementIndex) Export a single element from the tuple, identified by its element index, to an Object.
-
Method Details
-
exportElement
Export a single element from the tuple, identified by its element index, to an Object. This interface is intended to be compatible with bothTupleExporter.exportElement(Object, int)
andTupleExporter.exportElementReinterpreted(Object, int)
, and consequently does not specify whether the result will be reinterpreted.- Parameters:
tuple
- The tuple to export an element fromelementIndex
- The element index to export- Returns:
- The exported element, boxed when necessary
-