Codota Logo
BaseRecordReader
Code IndexAdd Codota to your IDE (free)

How to use
BaseRecordReader
in
org.apache.parquet.io

Best Java code snippets using org.apache.parquet.io.BaseRecordReader (Showing top 12 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
LocalDateTime l =
  • Codota Iconnew LocalDateTime()
  • Codota IconLocalDateTime.now()
  • Codota IconDateTimeFormatter formatter;String text;formatter.parseLocalDateTime(text)
  • Smart code suggestions by Codota
}
origin: org.apache.parquet/parquet-column

final protected void addPrimitiveINT32(String field, int index, int value) {
 startField(field, index);
 LOG.debug("addInteger({})", value);
 recordConsumer.addInteger(value);
 endField(field, index);
}
origin: org.apache.parquet/parquet-column

@Override
public T read() {
 readOneRecord();
 return recordMaterializer.getCurrentRecord();
}
origin: org.apache.parquet/parquet-column

final protected void startGroup(String field, int index) {
 startField(field, index);
 LOG.debug("startGroup()");
 recordConsumer.startGroup();
}
origin: org.apache.parquet/parquet-column

final protected void endGroup(String field, int index) {
 if (endField != null) {
  // close the previous field
  recordConsumer.endField(endField, endIndex);
  endField = null;
 }
 LOG.debug("endGroup()");
 recordConsumer.endGroup();
 endField(field, index);
}
origin: org.lasersonlab.apache.parquet/parquet-column

@Override
public T read() {
 readOneRecord();
 return recordMaterializer.getCurrentRecord();
}
origin: org.lasersonlab.apache.parquet/parquet-column

final protected void startGroup(String field, int index) {
 startField(field, index);
 LOG.debug("startGroup()");
 recordConsumer.startGroup();
}
origin: org.lasersonlab.apache.parquet/parquet-column

final protected void endGroup(String field, int index) {
 if (endField != null) {
  // close the previous field
  recordConsumer.endField(endField, endIndex);
  endField = null;
 }
 LOG.debug("endGroup()");
 recordConsumer.endGroup();
 endField(field, index);
}
origin: org.apache.parquet/parquet-column

final protected void addPrimitiveBINARY(String field, int index, Binary value) {
 startField(field, index);
 LOG.debug("addBinary({})", value);
 recordConsumer.addBinary(value);
 endField(field, index);
}
origin: org.apache.parquet/parquet-column

final protected void addPrimitiveINT64(String field, int index, long value) {
 startField(field, index);
 LOG.debug("addLong({})", value);
 recordConsumer.addLong(value);
 endField(field, index);
}
origin: org.lasersonlab.apache.parquet/parquet-column

final protected void addPrimitiveINT64(String field, int index, long value) {
 startField(field, index);
 LOG.debug("addLong({})", value);
 recordConsumer.addLong(value);
 endField(field, index);
}
origin: org.lasersonlab.apache.parquet/parquet-column

final protected void addPrimitiveBINARY(String field, int index, Binary value) {
 startField(field, index);
 LOG.debug("addBinary({})", value);
 recordConsumer.addBinary(value);
 endField(field, index);
}
origin: org.lasersonlab.apache.parquet/parquet-column

final protected void addPrimitiveINT32(String field, int index, int value) {
 startField(field, index);
 LOG.debug("addInteger({})", value);
 recordConsumer.addInteger(value);
 endField(field, index);
}
org.apache.parquet.ioBaseRecordReader

Most used methods

  • endField
  • readOneRecord
  • startField

Popular in Java

  • Creating JSON documents from java classes using gson
  • runOnUiThread (Activity)
  • getSystemService (Context)
  • compareTo (BigDecimal)
    Compares this BigDecimal with the specified BigDecimal. Two BigDecimal objects that are equal in val
  • Point (java.awt)
    A point representing a location in (x, y) coordinate space, specified in integer precision.
  • URLConnection (java.net)
    The abstract class URLConnection is the superclass of all classes that represent a communications li
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • Join (org.hibernate.mapping)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now