mirror of
https://github.com/enso-org/enso.git
synced 2024-11-22 03:32:23 +03:00
forgot to commit file
This commit is contained in:
parent
f5e5de2f16
commit
46894dd7c1
@ -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;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user