Interface Table<F extends Field>
-
- Type Parameters:
F- Field type.
- All Known Subinterfaces:
CSVTable,EBXTable,ExcelTable,SQLTable
public interface Table<F extends Field>Represents a table in a data source.- Since:
- 4.1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<F>getFields()Returns fields of this table.java.lang.StringgetLabel()Returns the label.SchemaPathgetPath()Returns the path representing this table.
-
-
-
Method Detail
-
getPath
SchemaPath getPath()
Returns the path representing this table.
-
getLabel
java.lang.String getLabel()
Returns the label.
-
getFields
java.util.List<F> getFields()
Returns fields of this table.
-
-