Module org.apache.arrow.vector
Interface ExtensionTypeWriterFactory<T extends FieldWriter>
- Type Parameters:
T- the type of writer implementation for a specificExtensionTypeVector.
public interface ExtensionTypeWriterFactory<T extends FieldWriter>
A factory interface for creating instances of
ExtensionTypeWriter. This factory allows
configuring writer implementations for specific ExtensionTypeVector.-
Method Summary
Modifier and TypeMethodDescriptiongetWriterImpl(ExtensionTypeVector vector) Returns an instance of the writer implementation for the givenExtensionTypeVector.
-
Method Details
-
getWriterImpl
Returns an instance of the writer implementation for the givenExtensionTypeVector.- Parameters:
vector- theExtensionTypeVectorfor which the writer implementation is to be returned.- Returns:
- an instance of the writer implementation for the given
ExtensionTypeVector.
-