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

org.datavec.dataframe.columns.TimeColumnUtils Maven / Gradle / Ivy

Go to download

High-performance Java Dataframe with integrated columnar storage (fork of tablesaw)

There is a newer version: 0.9.1
Show newest version
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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy