Package org.apache.parquet.schema
Interface TypeVisitor
-
public interface TypeVisitorImplement this interface to visit a schema type.accept(new TypeVisitor() { ... });
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidvisit(GroupType groupType)voidvisit(MessageType messageType)voidvisit(PrimitiveType primitiveType)
-
-
-
Method Detail
-
visit
void visit(GroupType groupType)
- Parameters:
groupType- the group type to visit
-
visit
void visit(MessageType messageType)
- Parameters:
messageType- the message type to visit
-
visit
void visit(PrimitiveType primitiveType)
- Parameters:
primitiveType- the primitive type to visit
-
-