]> git.argeo.org Git - lgpl/argeo-commons.git/blob - basic/runtime/org.argeo.basic.nodeps/src/main/java/org/argeo/util/tabular/TabularRow.java
Add the ability to force encoding while parsing csv files + corresponding JUnit tests.
[lgpl/argeo-commons.git] / basic / runtime / org.argeo.basic.nodeps / src / main / java / org / argeo / util / tabular / TabularRow.java
1 package org.argeo.util.tabular;
2
3 /** A row of tabular data */
4 public interface TabularRow {
5 /** The value at this column index */
6 public Object get(Integer col);
7
8 /** The raw objects (direct references) */
9 public Object[] toArray();
10
11 /** Number of columns */
12 public int size();
13 }