org.datavec.dataframe.columns.TimeColumnUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datavec-dataframe Show documentation
Show all versions of datavec-dataframe Show documentation
High-performance Java Dataframe with integrated columnar storage (fork of tablesaw)
package org.datavec.dataframe.columns;
import org.datavec.dataframe.api.TimeColumn;
import org.datavec.dataframe.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;
}