Package parquet.example.data.simple

Examples of parquet.example.data.simple.SimpleGroupFactory


  private final SimpleGroupFactory simpleGroupFactory;

  private SimpleGroupConverter root;

  public GroupRecordConverter(MessageType schema) {
    this.simpleGroupFactory = new SimpleGroupFactory(schema);
    this.root = new SimpleGroupConverter(null, 0, schema) {
      @Override
      public void start() {
        this.current = simpleGroupFactory.newGroup();
      }
View Full Code Here

TOP

Related Classes of parquet.example.data.simple.SimpleGroupFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.