init research

This commit is contained in:
2026-02-08 11:20:43 -10:00
commit bdf064f54d
3041 changed files with 1592200 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
package tech.v3.dataset;
import clojure.lang.Keyword;
import java.lang.Iterable;
import java.lang.AutoCloseable;
public class Spreadsheet
{
public interface Workbook extends Iterable, AutoCloseable
{
}
public interface Sheet extends Iterable
{
public String name();
public String id();
public String stableId();
}
public interface Row extends Iterable
{
public int getRowNum();
}
public interface Cell
{
boolean missing();
int getColumnNum();
Object value();
double doubleValue();
boolean boolValue();
}
}