Tabnine Logo
FloatStatistics.initializeStats
Code IndexAdd Tabnine to your IDE (free)

How to use
initializeStats
method
in
org.apache.parquet.column.statistics.FloatStatistics

Best Java code snippets using org.apache.parquet.column.statistics.FloatStatistics.initializeStats (Showing top 6 results out of 315)

origin: org.apache.parquet/parquet-column

@Override
public void updateStats(float value) {
 if (!this.hasNonNullValue()) {
  initializeStats(value, value);
 } else {
  updateStats(value, value);
 }
}
origin: org.lasersonlab.apache.parquet/parquet-column

@Override
public void updateStats(float value) {
 if (!this.hasNonNullValue()) {
  initializeStats(value, value);
 } else {
  updateStats(value, value);
 }
}
origin: org.apache.parquet/parquet-column

private FloatStatistics(FloatStatistics other) {
 super(other.type());
 if (other.hasNonNullValue()) {
  initializeStats(other.min, other.max);
 }
 setNumNulls(other.getNumNulls());
}
origin: org.lasersonlab.apache.parquet/parquet-column

private FloatStatistics(FloatStatistics other) {
 super(other.type());
 if (other.hasNonNullValue()) {
  initializeStats(other.min, other.max);
 }
 setNumNulls(other.getNumNulls());
}
origin: org.apache.parquet/parquet-column

@Override
public void mergeStatisticsMinMax(Statistics stats) {
 FloatStatistics floatStats = (FloatStatistics)stats;
 if (!this.hasNonNullValue()) {
  initializeStats(floatStats.getMin(), floatStats.getMax());
 } else {
  updateStats(floatStats.getMin(), floatStats.getMax());
 }
}
origin: org.lasersonlab.apache.parquet/parquet-column

@Override
public void mergeStatisticsMinMax(Statistics stats) {
 FloatStatistics floatStats = (FloatStatistics)stats;
 if (!this.hasNonNullValue()) {
  initializeStats(floatStats.getMin(), floatStats.getMax());
 } else {
  updateStats(floatStats.getMin(), floatStats.getMax());
 }
}
org.apache.parquet.column.statisticsFloatStatisticsinitializeStats

Popular methods of FloatStatistics

  • getMax
  • getMin
  • setMinMax
  • <init>
  • genericGetMax
  • genericGetMin
  • comparator
  • getNumNulls
  • hasNonNullValue
  • markAsNotEmpty
  • setNumNulls
  • type
  • setNumNulls,
  • type,
  • updateStats

Popular in Java

  • Making http post requests using okhttp
  • getSystemService (Context)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getSharedPreferences (Context)
  • HttpServer (com.sun.net.httpserver)
    This class implements a simple HTTP server. A HttpServer is bound to an IP address and port number a
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • Timer (java.util)
    Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
  • TreeMap (java.util)
    Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
  • Servlet (javax.servlet)
    Defines methods that all servlets must implement. A servlet is a small Java program that runs within
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • Top Sublime Text plugins
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