All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.lwhite1.tablesaw.columns.TimeColumnUtils Maven / Gradle / Ivy

Go to download

High-performance Java Dataframe with integrated columnar storage

There is a newer version: 0.7.7.3
Show newest version
package com.github.lwhite1.tablesaw.columns;

import com.github.lwhite1.tablesaw.api.TimeColumn;
import com.github.lwhite1.tablesaw.filtering.IntPredicate;
import it.unimi.dsi.fastutil.ints.IntArrayList;

import java.time.LocalTime;

/**
 *
 */
public interface TimeColumnUtils extends Column, Iterable {

  IntArrayList data();

  IntPredicate isMissing = i -> i == TimeColumn.MISSING_VALUE;

  IntPredicate isNotMissing = i -> i != TimeColumn.MISSING_VALUE;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy