]> git.argeo.org Git - lgpl/argeo-commons.git/blob - TabularRow.java
a79b072da30dac1d03b6363099760780140440b0
[lgpl/argeo-commons.git] / TabularRow.java
1 package org.argeo.api.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 }