Tabnine Logo
PrimitiveConverter.addLong
Code IndexAdd Tabnine to your IDE (free)

How to use
addLong
method
in
org.apache.parquet.io.api.PrimitiveConverter

Best Java code snippets using org.apache.parquet.io.api.PrimitiveConverter.addLong (Showing top 7 results out of 315)

origin: apache/hive

@Override
public void addLong(long value) {
 wrapped.addLong(value);
}
origin: org.apache.parquet/parquet-thrift

@Override
public void addLong(long value) {
 delegate.addLong(value);
 ++ count;
}
origin: org.lasersonlab.apache.parquet/parquet-column

 @Override
 public void addLong(long value) {
  for (ValueInspector valueInspector : valueInspectors) {
   valueInspector.update(value);
  }
  delegate.addLong(value);
 }
}
origin: org.apache.parquet/parquet-column

@Override
public void addValueToPrimitiveConverter(
  PrimitiveConverter primitiveConverter, ColumnReader columnReader) {
 primitiveConverter.addLong(columnReader.getLong());
}
origin: org.apache.parquet/parquet-column

 @Override
 public void addLong(long value) {
  for (ValueInspector valueInspector : valueInspectors) {
   valueInspector.update(value);
  }
  delegate.addLong(value);
 }
}
origin: org.lasersonlab.apache.parquet/parquet-column

@Override
public void addValueToPrimitiveConverter(
  PrimitiveConverter primitiveConverter, ColumnReader columnReader) {
 primitiveConverter.addLong(columnReader.getLong());
}
origin: org.apache.parquet/parquet-thrift

@Override
public void addLong(long value) {
 startField();
 delegate.addLong(value);
 endField();
}
org.apache.parquet.io.apiPrimitiveConverteraddLong

Popular methods of PrimitiveConverter

  • addBinary
  • addBoolean
  • addDouble
  • addFloat
  • addInt
  • hasDictionarySupport
    if it returns true we will attempt to use dictionary based conversion instead
  • addValueFromDictionary
    add a value based on the dictionary set with setDictionary() Will be used if the Converter has dicti
  • setDictionary
    Set the dictionary to use if the data was encoded using dictionary encoding and the converter hasDic
  • asPrimitiveConverter
  • isPrimitive

Popular in Java

  • Updating database using SQL prepared statement
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getExternalFilesDir (Context)
  • getResourceAsStream (ClassLoader)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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