Interface ArrowValueProjector
-
- All Known Implementing Classes:
ArrowValueProjectorImpl,ListArrowValueProjector,SimpleArrowValueProjector,StructArrowValueProjector
public interface ArrowValueProjectorImplementation 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 ofprojectwould project one Arrow datum to a Java Object the object.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Objectproject(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.
-
-