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

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

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

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());
 }
}
origin: prestosql/presto

(long) floatToRawIntBits(floatStatistics.getMin()),
(long) floatToRawIntBits(floatStatistics.getMax()));
origin: io.prestosql/presto-parquet

(long) floatToRawIntBits(floatStatistics.getMin()),
(long) floatToRawIntBits(floatStatistics.getMax()));
origin: org.apache.drill.exec/drill-java-exec

 break;
case FLOAT4:
 minHolder = ValueHolderHelper.getFloat4Holder(((FloatStatistics)input).getMin());
 maxHolder = ValueHolderHelper.getFloat4Holder(((FloatStatistics)input).getMax());
 break;
org.apache.parquet.column.statisticsFloatStatisticsgetMin

Popular methods of FloatStatistics

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

Popular in Java

  • Start an intent from android
  • runOnUiThread (Activity)
  • getSharedPreferences (Context)
  • addToBackStack (FragmentTransaction)
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • Selector (java.nio.channels)
    A controller for the selection of SelectableChannel objects. Selectable channels can be registered w
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • LinkedHashMap (java.util)
    LinkedHashMap is an implementation of Map that guarantees iteration order. All optional operations a
  • Timer (java.util)
    Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
  • JButton (javax.swing)
  • Top plugins for Android Studio
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