Interface ArrowValueProjector
-
- All Known Implementing Classes:
ArrowValueProjectorImpl
,ListArrowValueProjector
,SimpleArrowValueProjector
,StructArrowValueProjector
public interface ArrowValueProjector
Implementation of this interface is expected to project Arrow data into Java objects. The implementation is expected to take into a fieldReader during initialization. Each call ofproject
would project one Arrow datum to a Java Object the object.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Object
project(int pos)
Projects Arrow datum into a matching Java object
-
-
-
Method Detail
-
project
Object project(int pos)
Projects Arrow datum into a matching Java object- Parameters:
pos
- the position/row to project to- Returns:
- The corresponding Java object matching the Arrow datum.
-
-