congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
PrimitiveColumnIO.getParent
Code IndexAdd Tabnine to your IDE (free)

How to use
getParent
method
in
org.apache.parquet.io.PrimitiveColumnIO

Best Java code snippets using org.apache.parquet.io.PrimitiveColumnIO.getParent (Showing top 8 results out of 315)

origin: org.apache.parquet/parquet-column

private PrimitiveColumnIO getLast(int r) {
 ColumnIO parent = getParent(r);
 PrimitiveColumnIO last = parent.getLast();
 return last;
}
origin: org.apache.parquet/parquet-column

private PrimitiveColumnIO getFirst(int r) {
 ColumnIO parent = getParent(r);
 return parent.getFirst();
}
origin: org.lasersonlab.apache.parquet/parquet-column

private PrimitiveColumnIO getLast(int r) {
 ColumnIO parent = getParent(r);
 PrimitiveColumnIO last = parent.getLast();
 return last;
}
origin: org.lasersonlab.apache.parquet/parquet-column

private PrimitiveColumnIO getFirst(int r) {
 ColumnIO parent = getParent(r);
 return parent.getFirst();
}
origin: org.apache.parquet/parquet-column

private void buildGroupToLeafWriterMap(PrimitiveColumnIO primitive, ColumnWriter writer) {
 GroupColumnIO parent = primitive.getParent();
 do {
  getLeafWriters(parent).add(writer);
  parent = parent.getParent();
 } while (parent != null);
}
origin: org.lasersonlab.apache.parquet/parquet-column

private void buildGroupToLeafWriterMap(PrimitiveColumnIO primitive, ColumnWriter writer) {
 GroupColumnIO parent = primitive.getParent();
 do {
  getLeafWriters(parent).add(writer);
  parent = parent.getParent();
 } while (parent != null);
}
origin: org.apache.parquet/parquet-column

 levelToClose[i][nextRepLevel] = 0;
} else if (leafColumnIO.isLast(nextRepLevel)) { // reached the end of this level => close the repetition level
 ColumnIO parent = leafColumnIO.getParent(nextRepLevel);
 levelToClose[i][nextRepLevel] = parent.getFieldPath().length - 1;
} else { // otherwise close until the next common parent
origin: org.lasersonlab.apache.parquet/parquet-column

 levelToClose[i][nextRepLevel] = 0;
} else if (leafColumnIO.isLast(nextRepLevel)) { // reached the end of this level => close the repetition level
 ColumnIO parent = leafColumnIO.getParent(nextRepLevel);
 levelToClose[i][nextRepLevel] = parent.getFieldPath().length - 1;
} else { // otherwise close until the next common parent
org.apache.parquet.ioPrimitiveColumnIOgetParent

Popular methods of PrimitiveColumnIO

  • getColumnDescriptor
  • getId
  • getPath
  • getType
  • <init>
  • getDefinitionLevel
  • getFieldPath
  • getFirst
  • getIndexFieldPath
  • getLast
  • getRepetitionLevel
  • isFirst
  • getRepetitionLevel,
  • isFirst,
  • isLast,
  • toString

Popular in Java

  • Updating database using SQL prepared statement
  • requestLocationUpdates (LocationManager)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • TreeSet (java.util)
    TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
  • Collectors (java.util.stream)
  • Logger (org.slf4j)
    The org.slf4j.Logger interface is the main user entry point of SLF4J API. It is expected that loggin
  • Top 25 Plugins for Webstorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now