InstantColumnType.java
package tech.tablesaw.columns.instant;
import tech.tablesaw.api.ColumnType;
import tech.tablesaw.api.InstantColumn;
import tech.tablesaw.columns.AbstractColumnType;
import tech.tablesaw.io.ReadOptions;
public class InstantColumnType extends AbstractColumnType {
public static final int BYTE_SIZE = 8;
public static final InstantParser DEFAULT_PARSER = new InstantParser(ColumnType.INSTANT);
private static InstantColumnType INSTANCE =
new InstantColumnType(BYTE_SIZE, "INSTANT", "Instant");
private InstantColumnType(int byteSize, String name, String printerFriendlyName) {
super(byteSize, name, printerFriendlyName);
}
public static InstantColumnType instance() {
if (INSTANCE == null) {
INSTANCE = new InstantColumnType(BYTE_SIZE, "INSTANT", "Instant");
}
return INSTANCE;
}
public static boolean valueIsMissing(long value) {
return value == missingValueIndicator();
}
@Override
public InstantColumn create(String name) {
return InstantColumn.create(name);
}
@Override
public InstantParser customParser(ReadOptions options) {
return new InstantParser(this);
}
public static long missingValueIndicator() {
return Long.MIN_VALUE;
}
}