Package pl.poznan.put.interfaces
Interface Tabular
public interface Tabular
A set of methods to be implemented by result objects with tabular form of data.
-
Method Summary
Modifier and TypeMethodDescriptionGenerates tabular data to be exported to output file i.e. raw numbers with maximum precision and ASCII only.Generates tabular data which are formatted for UI, so they might be long, complex and with Unicode characters.
-
Method Details
-
asExportableTableModel
TableModel asExportableTableModel()Generates tabular data which are formatted for UI, so they might be long, complex and with Unicode characters.- Returns:
- An instance of
TableModel
with the data.
-
asDisplayableTableModel
TableModel asDisplayableTableModel()Generates tabular data to be exported to output file i.e. raw numbers with maximum precision and ASCII only.- Returns:
- An instance of
TableModel
with the data.
-