forgot to commit file

This commit is contained in:
Radosław Waśko 2024-11-21 11:39:37 +01:00
parent f5e5de2f16
commit 46894dd7c1

View File

@ -0,0 +1,23 @@
package org.enso.table.data.column.storage.type;
public record NullType() implements StorageType {
public static final NullType INSTANCE = new NullType();
@Override
public boolean isNumeric() {
// TODO ?
return false;
}
@Override
public boolean hasDate() {
// TODO ?
return false;
}
@Override
public boolean hasTime() {
// TODO ?
return false;
}
}