]> git.argeo.org Git - lgpl/argeo-commons.git/blob - basic/runtime/org.argeo.basic.nodeps/src/main/java/org/argeo/util/tabular/TabularContent.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 / TabularContent.java
1 package org.argeo.util.tabular;
2
3 import java.util.List;
4
5 /**
6 * Content organized as a table, possibly with headers. Only JCR types are
7 * supported even though there is not direct dependency on JCR.
8 */
9 public interface TabularContent {
10 /** The headers of this table or <code>null</code> is none available. */
11 public List<TabularColumn> getColumns();
12
13 public TabularRowIterator read();
14 }