|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of Table in org.omnaest.utils.structure.table |
|---|
| Methods in org.omnaest.utils.structure.table that return Table | |
|---|---|
Table<E> |
Table.Stripe.getTable()
Returns the underlying Table |
| Uses of Table in org.omnaest.utils.structure.table.adapter |
|---|
| Fields in org.omnaest.utils.structure.table.adapter declared as Table | |
|---|---|
protected Table<Object> |
TableToTypeListAdapter.table
|
protected Table<?> |
TableToResultSetAdapter.table
|
| Fields in org.omnaest.utils.structure.table.adapter with type parameters of type Table | |
|---|---|
protected Iterator<? extends Table> |
TableListToCallableStatementAdapter.tableIterator
|
protected List<? extends Table> |
TableListToCallableStatementAdapter.tableList
|
| Methods in org.omnaest.utils.structure.table.adapter that return Table | |
|---|---|
Table<Object> |
TableToTypeListAdapter.getTable()
Returns the underlying Table data structure. |
| Methods in org.omnaest.utils.structure.table.adapter with parameters of type Table | ||
|---|---|---|
ResultSet |
TableToResultSetAdapter.initializeAdapter(Table table)
|
|
CallableStatement |
TableListToCallableStatementAdapter.initializeAdapter(Table table)
|
|
A |
TableAdapter.initializeAdapter(Table<E> table)
Returns an adapter for the given Table |
|
List<B> |
TableToTypeListAdapter.initializeAdapter(Table<Object> table)
|
|
static
|
TableToTypeListAdapter.newInstance(Table<?> table,
Class<? extends B> beanClass)
Factory methods which creates a new TableToTypeListAdapter instance for the given Java Bean Class and
Table . |
|
| Method parameters in org.omnaest.utils.structure.table.adapter with type arguments of type Table | |
|---|---|
void |
TableListToCallableStatementAdapter.initializeAdapter(List<? extends Table> tableList)
|
| Constructors in org.omnaest.utils.structure.table.adapter with parameters of type Table | |
|---|---|
TableListToCallableStatementAdapter(Table... tables)
|
|
TableListToCallableStatementAdapter(Table table)
|
|
TableToResultSetAdapter(Table table)
Creates a new initialized adapter. |
|
TableToTypeListAdapter(Table<? extends Object> table,
Class<? extends B> beanClass)
Creates a new TableToTypeListAdapter with the given Table as underlying Table object. |
|
| Constructor parameters in org.omnaest.utils.structure.table.adapter with type arguments of type Table | |
|---|---|
TableListToCallableStatementAdapter(List<? extends Table> tableList)
Creates a new initialized adapter. |
|
| Uses of Table in org.omnaest.utils.structure.table.concrete |
|---|
| Classes in org.omnaest.utils.structure.table.concrete that implement Table | |
|---|---|
class |
ArrayTable<E>
Implementation of Table which has a rich underlying structure based on ArrayLists, HashSet and
HashMap. |
class |
TableAbstract<E>
Implements all facade methods which are only operating on the facade itself |
class |
TableBasic<E>
Declares the methods of basic subspecifications like TableSerializer, TableAdaptable |
| Methods in org.omnaest.utils.structure.table.concrete that return Table | ||
|---|---|---|
Table<E> |
ArrayTable.clear()
|
|
|
TableBasic.convert(Table.TableCellConverter<E,TO> tableCellConverter)
|
|
Table<E> |
TableAbstract.convertFirstColumnToTitle()
|
|
Table<E> |
TableAbstract.convertFirstRowToTitle()
|
|
Table<E> |
TableBasic.copyFrom(TableDataSource<E> tableDataSource)
|
|
Table<E> |
TableAbstract.ensureNumberOfColumns(int numberOfColumns)
|
|
Table<E> |
TableAbstract.ensureNumberOfRows(int numberOfRows)
|
|
Table<E> |
ArrayTable.ArrayTableInternal.getUnderlyingTable()
|
|
Table<E> |
TableBasic.processTableCells(Table.TableCellVisitor<E> tableCellVisitor)
|
|
Table<E> |
TableBasic.putArray(E[][] elementArray,
int rowIndexPosition,
int columnIndexPosition)
|
|
Table<E> |
TableBasic.putTable(TableDataSource<E> tableDataSource,
int rowIndexPosition,
int columnIndexPosition)
|
|
Table<E> |
ArrayTable.setCellElement(int cellIndexPosition,
E element)
|
|
Table<E> |
ArrayTable.setCellElement(int rowIndexPosition,
int columnIndexPosition,
E element)
|
|
Table<E> |
TableAbstract.setColumnCellElements(int columnIndexPosition,
List<? extends E> columnCellElementList)
|
|
Table<E> |
ArrayTable.setColumnTitleValue(Object titleValue,
int columnIndexPosition)
|
|
Table<E> |
TableBasic.setColumnTitleValues(List<?> titleValueList)
|
|
Table<E> |
TableBasic.setColumnTitleValues(Object... titleValues)
|
|
Table<E> |
TableAbstract.setNumberOfColumns(int numberOfColumns)
|
|
Table<E> |
TableAbstract.setNumberOfRows(int numberOfRows)
|
|
Table<E> |
TableAbstract.setRowCellElements(int rowIndexPosition,
List<? extends E> rowCellElementList)
|
|
Table<E> |
ArrayTable.setRowTitleValue(Object titleValue,
int rowIndexPosition)
|
|
Table<E> |
TableBasic.setRowTitleValues(List<?> titleValueList)
|
|
Table<E> |
TableBasic.setRowTitleValues(Object... titleValues)
|
|
Table<E> |
ArrayTable.setTableName(Object tableName)
|
|
Table<E> |
ArrayTable.transpose()
|
|
Table<E> |
TableAbstract.truncateRows(int rowIndexPosition)
|
|
| Uses of Table in org.omnaest.utils.structure.table.concrete.internal |
|---|
| Methods in org.omnaest.utils.structure.table.concrete.internal that return Table | |
|---|---|
Table<E> |
StripeAbstract.getTable()
|
| Uses of Table in org.omnaest.utils.structure.table.concrete.internal.adapterprovider |
|---|
| Fields in org.omnaest.utils.structure.table.concrete.internal.adapterprovider declared as Table | |
|---|---|
protected Table<E> |
TableAdapterProviderImpl.table
|
| Constructors in org.omnaest.utils.structure.table.concrete.internal.adapterprovider with parameters of type Table | |
|---|---|
TableAdapterProviderImpl(Table<E> table)
|
|
| Uses of Table in org.omnaest.utils.structure.table.concrete.internal.cloner |
|---|
| Fields in org.omnaest.utils.structure.table.concrete.internal.cloner declared as Table | |
|---|---|
protected Table<E> |
TableClonerImpl.table
|
| Methods in org.omnaest.utils.structure.table.concrete.internal.cloner that return Table | |
|---|---|
Table<E> |
TableClonerImpl.structureAndContent()
|
Table<E> |
TableClonerImpl.structureOnly()
|
| Constructors in org.omnaest.utils.structure.table.concrete.internal.cloner with parameters of type Table | |
|---|---|
TableClonerImpl(Table<E> table)
|
|
| Uses of Table in org.omnaest.utils.structure.table.concrete.internal.helper |
|---|
| Methods in org.omnaest.utils.structure.table.concrete.internal.helper with parameters of type Table | ||
|---|---|---|
static
|
TableInternalHelper.extractTableInternalFromTable(Table<E> table)
Extracts the TableInternal instance from the given Table instance by calling the internal getter called
getTableInternal |
|
| Uses of Table in org.omnaest.utils.structure.table.concrete.internal.iterator |
|---|
| Fields in org.omnaest.utils.structure.table.concrete.internal.iterator declared as Table | |
|---|---|
protected Table<E> |
TableRowListIterator.TableToListIteratorIndexBasedSourceAdapter.table
|
| Constructors in org.omnaest.utils.structure.table.concrete.internal.iterator with parameters of type Table | |
|---|---|
TableRowListIterator.TableToListIteratorIndexBasedSourceAdapter(Table<E> table)
|
|
TableRowListIterator(Table<E> table)
|
|
| Uses of Table in org.omnaest.utils.structure.table.concrete.internal.selection |
|---|
| Classes in org.omnaest.utils.structure.table.concrete.internal.selection that implement Table | |
|---|---|
protected static class |
SelectionExecutor.ArrayTableWithAccessibleTableInternal<E>
Makes the ArrayTable.ArrayTableInternal accessible for the SelectionExecutor |
| Methods in org.omnaest.utils.structure.table.concrete.internal.selection that return Table | |
|---|---|
Table<E> |
SelectionImpl.asTable()
|
Table<E> |
SelectionExecutor.execute()
|
| Methods in org.omnaest.utils.structure.table.concrete.internal.selection with parameters of type Table | |
|---|---|
TableSelectable.Selection<E> |
SelectionImpl.from(Table<E>... tables)
|
TableSelectable.SelectionJoin<E> |
SelectionImpl.innerJoin(Table<E> table)
|
| Uses of Table in org.omnaest.utils.structure.table.concrete.internal.selection.data |
|---|
| Fields in org.omnaest.utils.structure.table.concrete.internal.selection.data declared as Table | |
|---|---|
protected Table<E> |
TableAndJoin.table
|
| Methods in org.omnaest.utils.structure.table.concrete.internal.selection.data that return Table | |
|---|---|
protected Table<E> |
TableAndJoin.getTable()
|
| Methods in org.omnaest.utils.structure.table.concrete.internal.selection.data that return types with arguments of type Table | |
|---|---|
Map<Table<E>,Join<E>> |
SelectionData.getTableToJoinMap()
|
| Constructors in org.omnaest.utils.structure.table.concrete.internal.selection.data with parameters of type Table | |
|---|---|
TableAndJoin(Table<E> table,
Join<E> join)
|
|
| Uses of Table in org.omnaest.utils.structure.table.concrete.internal.serializer |
|---|
| Fields in org.omnaest.utils.structure.table.concrete.internal.serializer declared as Table | |
|---|---|
protected Table<E> |
TableSerializerImpl.table
|
| Constructors in org.omnaest.utils.structure.table.concrete.internal.serializer with parameters of type Table | |
|---|---|
TableSerializerImpl(Table<E> table)
|
|
| Uses of Table in org.omnaest.utils.structure.table.concrete.internal.serializer.executor |
|---|
| Fields in org.omnaest.utils.structure.table.concrete.internal.serializer.executor declared as Table | |
|---|---|
protected Table<E> |
TableUnmarshallerExecutorAbstract.table
|
protected Table<E> |
TableMarshallerExecutorAbstract.table
|
| Methods in org.omnaest.utils.structure.table.concrete.internal.serializer.executor that return Table | |
|---|---|
Table<E> |
TableUnmarshallerExecutorImpl.from(CharSequence charSequence)
|
Table<E> |
TableUnmarshallerExecutorAbstract.from(File file)
|
Table<E> |
TableUnmarshallerExecutorImpl.from(InputStream inputStream)
|
Table<E> |
TableUnmarshallerExecutorAbstract.from(String string)
|
| Constructors in org.omnaest.utils.structure.table.concrete.internal.serializer.executor with parameters of type Table | |
|---|---|
TableMarshallerExecutorAbstract(TableMarshaller<E> tableMarshaller,
Table<E> table)
|
|
TableMarshallerExecutorImpl(TableMarshaller<E> tableMarshaller,
Table<E> table)
|
|
TableUnmarshallerExecutorAbstract(TableUnmarshaller<E> tableUnmarshaller,
Table<E> table)
|
|
TableUnmarshallerExecutorImpl(TableUnmarshaller<E> tableUnmarshaller,
Table<E> table)
|
|
| Uses of Table in org.omnaest.utils.structure.table.helper |
|---|
| Methods in org.omnaest.utils.structure.table.helper that return Table | |
|---|---|
static Table<String> |
TableHelper.parseCSVContent(String content)
Returns a table for a given csv text content. |
static Table<String> |
TableHelper.parseCSVContent(String content,
String columnSeparator)
Returns a table for a given csv text content using the given column separator. |
| Methods in org.omnaest.utils.structure.table.helper with parameters of type Table | ||
|---|---|---|
static
|
TableHelper.renderAsCSVContent(Table<E> table)
|
|
static
|
TableHelper.renderAsCSVContent(Table<E> table,
String columnSeparator)
Renders the content of a table as csv text using the given column separator. |
|
static
|
TableHelper.renderToString(Table<E> table)
Converts a given Table to a readable String |
|
| Uses of Table in org.omnaest.utils.structure.table.internal |
|---|
| Methods in org.omnaest.utils.structure.table.internal that return Table | |
|---|---|
Table<E> |
TableInternal.getUnderlyingTable()
Returns the underlying Table instance |
| Uses of Table in org.omnaest.utils.structure.table.serializer |
|---|
| Methods in org.omnaest.utils.structure.table.serializer with parameters of type Table | |
|---|---|
void |
TableMarshaller.marshal(Table<E> table,
Appendable appendable)
Marshals and appends the given Table to the given Appendable |
void |
TableMarshaller.marshal(Table<E> table,
InputStream inputStream,
OutputStream outputStream)
Marshals the given Table into an OutputStream reading the data from the given InputStream first and
using this for updates. |
void |
TableMarshaller.marshal(Table<E> table,
OutputStream outputStream)
Marshals the given Table into an OutputStream |
void |
TableUnmarshaller.unmarshal(Table<E> table,
CharSequence charSequence)
Unmarshalls the given Table instance from a given CharSequence. |
void |
TableUnmarshaller.unmarshal(Table<E> table,
InputStream inputStream)
Unmarshals the given Table from an InputStream. |
| Uses of Table in org.omnaest.utils.structure.table.serializer.marshaller |
|---|
| Fields in org.omnaest.utils.structure.table.serializer.marshaller declared as Table | |
|---|---|
protected Table<E> |
TableMarshallerPlainText.TableToStringConverter.table
|
| Methods in org.omnaest.utils.structure.table.serializer.marshaller with parameters of type Table | |
|---|---|
protected XMLDataContainer<E> |
TableMarshallerXML.createXMLDataContainerFromTableContent(Table<E> table)
Creates a XMLDataContainer from the Table content |
void |
TableMarshallerXML.marshal(Table<E> table,
Appendable appendable)
|
void |
TableMarshallerXLS.marshal(Table<E> table,
Appendable appendable)
|
void |
TableMarshallerPlainText.marshal(Table<E> table,
Appendable appendable)
|
void |
TableMarshallerCSV.marshal(Table<E> table,
Appendable appendable)
|
void |
TableMarshallerXML.marshal(Table<E> table,
InputStream inputStream,
OutputStream outputStream)
|
void |
TableMarshallerXLS.marshal(Table<E> table,
InputStream inputStream,
OutputStream outputStream)
|
void |
TableMarshallerPlainText.marshal(Table<E> table,
InputStream inputStream,
OutputStream outputStream)
|
void |
TableMarshallerCSV.marshal(Table<E> table,
InputStream inputStream,
OutputStream outputStream)
|
void |
TableMarshallerXML.marshal(Table<E> table,
OutputStream outputStream)
|
void |
TableMarshallerXLS.marshal(Table<E> table,
OutputStream outputStream)
|
void |
TableMarshallerPlainText.marshal(Table<E> table,
OutputStream outputStream)
|
void |
TableMarshallerCSV.marshal(Table<E> table,
OutputStream outputStream)
|
| Constructors in org.omnaest.utils.structure.table.serializer.marshaller with parameters of type Table | |
|---|---|
TableMarshallerPlainText.TableToStringConverter(Table<E> table)
|
|
| Uses of Table in org.omnaest.utils.structure.table.serializer.unmarshaller |
|---|
| Methods in org.omnaest.utils.structure.table.serializer.unmarshaller with parameters of type Table | |
|---|---|
void |
TableUnmarshallerXML.unmarshal(Table<E> table,
CharSequence charSequence)
|
void |
TableUnmarshallerXLS.unmarshal(Table<E> table,
CharSequence charSequence)
|
void |
TableUnmarshallerPlainText.unmarshal(Table<E> table,
CharSequence charSequence)
|
void |
TableUnmarshallerCSV.unmarshal(Table<E> table,
CharSequence charSequence)
|
void |
TableUnmarshallerXML.unmarshal(Table<E> table,
InputStream inputStream)
|
void |
TableUnmarshallerXLS.unmarshal(Table<E> table,
InputStream inputStream)
|
void |
TableUnmarshallerPlainText.unmarshal(Table<E> table,
InputStream inputStream)
|
void |
TableUnmarshallerCSV.unmarshal(Table<E> table,
InputStream inputStream)
|
protected void |
TableUnmarshallerXML.writeXMLDataContainerToTableContent(Table<E> table,
XMLDataContainer<E> xmlDataContainer)
Clears the Table and writes the data of a XMLDataContainer to it |
| Uses of Table in org.omnaest.utils.structure.table.subspecification |
|---|
| Methods in org.omnaest.utils.structure.table.subspecification that return Table | ||
|---|---|---|
Table<E> |
TableSelectable.Selection.asTable()
Returns the declared TableSelectable.Selection as a new Table instance. . |
|
Table<E> |
TableCore.clear()
Clears the table, so that there are no elements left. |
|
|
TableCoreImmutable.convert(Table.TableCellConverter<E,TO> tableCellConverter)
Converts the current Table into a new Table instance with another element type. |
|
Table<E> |
TableCore.convertFirstColumnToTitle()
Converts the first column to row titles. |
|
Table<E> |
TableCore.convertFirstRowToTitle()
Takes the first row of the table converts it to text and removes it from the table. |
|
Table<E> |
TableAdaptable.copyFrom(TableDataSource<E> tableDataSource)
Clears the Table and copies the Table.CellImmutable.getElement() values from a given TableDataSource Copyies the
cell |
|
Table<E> |
TableCore.ensureNumberOfColumns(int numberOfColumns)
Ensures the number of Table.Columns to be present |
|
Table<E> |
TableCore.ensureNumberOfRows(int numberOfRows)
Ensures the number of Table.Rows to be present |
|
Table<E> |
TableSerializable.TableSerializer.TableUnmarshallerExecutor.from(CharSequence charSequence)
Reads a CharSequence and unmarshalls it into the underlying Table |
|
Table<E> |
TableSerializable.TableSerializer.TableUnmarshallerExecutor.from(File file)
Reads the given File and unmarshalls it into the underlying Table |
|
Table<E> |
TableSerializable.TableSerializer.TableUnmarshallerExecutor.from(InputStream inputStream)
Reads a InputStream and unmarshalls it into the underlying Table |
|
Table<E> |
TableSerializable.TableSerializer.TableUnmarshallerExecutor.from(String string)
Reads a String and unmarshalls it into the underlying Table |
|
Table<E> |
TableCoreImmutable.processTableCells(Table.TableCellVisitor<E> tableCellVisitor)
Helper method to do arbitrary stuff on the Table Table.Cells. |
|
Table<E> |
TableCore.putArray(E[][] elementArray,
int rowIndexPosition,
int columnIndexPosition)
Puts an array into the table. |
|
Table<E> |
TableCore.putTable(TableDataSource<E> tableCellElementSource,
int rowIndexPosition,
int columnIndexPosition)
Puts a foreign table into the current table at the given index position. |
|
Table<E> |
TableCore.setCellElement(int cellIndexPosition,
E element)
Puts a new element to the table at the defined cell index position. |
|
Table<E> |
TableCore.setCellElement(int rowIndexPosition,
int columnIndexPosition,
E element)
Puts a new element to the table at the defined index positions. |
|
Table<E> |
TableCore.setColumnCellElements(int columnIndexPosition,
List<? extends E> columnCellElementList)
Puts a column at the given column index position. |
|
Table<E> |
TableCore.setColumnTitleValue(Object titleValue,
int columnIndexPosition)
Sets the title of a column for a given column index position. |
|
Table<E> |
TableCore.setColumnTitleValues(List<?> titleValueList)
Sets the Table.Stripe.Titles of the Table.Columns. |
|
Table<E> |
TableCore.setColumnTitleValues(Object... titleValues)
|
|
Table<E> |
TableCore.setNumberOfColumns(int numberOfColumns)
Sets the number of Table.Columns |
|
Table<E> |
TableCore.setNumberOfRows(int numberOfRows)
Sets the number of Table.Rows |
|
Table<E> |
TableCore.setRowCellElements(int rowIndexPosition,
List<? extends E> rowCellElementList)
Puts a row at the given row index position |
|
Table<E> |
TableCore.setRowTitleValue(Object titleValue,
int rowIndexPosition)
Sets the Table.Stripe.Title for a Table.Row with the given index position. |
|
Table<E> |
TableCore.setRowTitleValues(List<?> titleValueList)
Sets the Table.Stripe.Title for the Table.Rows. |
|
Table<E> |
TableCore.setRowTitleValues(Object... titleValues)
|
|
Table<E> |
TableCore.setTableName(Object tableName)
Sets the name of the whole table. |
|
Table<E> |
TableCloneable.TableCloner.structureAndContent()
Returns a new Table instance with all the content of the underlying Table beeing cloned, too. |
|
Table<E> |
TableCloneable.TableCloner.structureOnly()
Clones only the Table structure. |
|
Table<E> |
TableCore.transpose()
Transposes the whole table, which means to swap rows and columns. |
|
Table<E> |
TableCore.truncateRows(int rowIndexPosition)
Deletes all Table.Rows including the given Table.Row index position to the end of the Table |
|
Table<E> |
TableSelectable.Where.whereElementEquals(Enum<?> columnTitleEnum,
E element)
Deprecated. |
|
Table<E> |
TableSelectable.Where.whereElementEquals(int columnIndexPosition,
E element)
Deprecated. Returns a new indexed table where all rows from the table where the elements of a given column do match are included. |
|
Table<E> |
TableSelectable.Where.whereElementEquals(String columnTitle,
E element)
Deprecated. |
|
|
TableSelectable.Where.whereElementEqualsBeanObject(B beanObject)
Deprecated. |
|
|
TableSelectable.Where.whereElementEqualsBeanObjectIgnoringNullValues(B beanObject)
Deprecated. Ignoring all values of the bean object which are null. |
|
Table<E> |
TableSelectable.Where.whereElementEqualsColumnEnumMap(Map<Enum<?>,E> columnEnumToElementMap)
Deprecated. |
|
Table<E> |
TableSelectable.Where.whereElementEqualsColumnIndexMap(Map<Integer,E> columnIndexToElementMap)
Deprecated. Returns a new indexed table where all rows from the table where the elements of a given column do match all criteria given by a map of column index positions and elements to be matched. |
|
Table<E> |
TableSelectable.Where.whereElementEqualsColumnTitleMap(Map<String,E> columnTitleToElementMap)
Deprecated. |
|
Table<E> |
TableSelectable.Where.whereElementIsBetween(int columnIndexPosition,
E lowerElement,
E upperElement)
Deprecated. Returns a new table with all rows from the table where the elements of the given column are between the range created by the lower and upper element given as parameter. |
|
Table<E> |
TableSelectable.Where.whereElementIsBetween(String columnTitle,
E lowerElement,
E upperElement)
Deprecated. |
|
Table<E> |
TableSelectable.Where.whereElementIsGreaterThan(Enum<?> columnTitleEnum,
E element)
Deprecated. |
|
Table<E> |
TableSelectable.Where.whereElementIsGreaterThan(int columnIndexPosition,
E element)
Deprecated. Returns a new table with all rows from the current table where elements in the given column are greater than the given element. |
|
Table<E> |
TableSelectable.Where.whereElementIsGreaterThan(String columnTitle,
E element)
Deprecated. |
|
|
TableSelectable.Where.whereElementIsGreaterThanBeanObject(B beanObject)
Deprecated. |
|
|
TableSelectable.Where.whereElementIsGreaterThanBeanObjectIgnoringNullValues(B beanObject)
Deprecated. |
|
Table<E> |
TableSelectable.Where.whereElementIsGreaterThanColumnIndexMap(Map<Integer,E> columnIndexToElementMap)
Deprecated. |
|
Table<E> |
TableSelectable.Where.whereElementIsGreaterThanColumnTitleMap(Map<String,E> columnTitleToElementMap)
Deprecated. |
|
Table<E> |
TableSelectable.Where.whereElementIsLesserThan(int columnIndexPosition,
E element)
Deprecated. Returns a new table where all rows of the current table where elements in the given column and are lesser than the given element. |
|
Table<E> |
TableSelectable.Where.whereElementIsLesserThan(String columnTitle,
E element)
Deprecated. |
|
| Methods in org.omnaest.utils.structure.table.subspecification with parameters of type Table | |
|---|---|
TableSelectable.Selection<E> |
TableSelectable.Selection.from(Table<E>... tables)
Sets the Table |
TableSelectable.SelectionJoin<E> |
TableSelectable.Selection.innerJoin(Table<E> table)
Join clause of a TableSelectable.Selection |
| Uses of Table in org.omnaest.utils.structure.table.view.concrete |
|---|
| Fields in org.omnaest.utils.structure.table.view.concrete declared as Table | |
|---|---|
protected Table<E> |
TableViewImpl.table
|
| Methods in org.omnaest.utils.structure.table.view.concrete that return Table | ||
|---|---|---|
|
TableViewImpl.convert(Table.TableCellConverter<E,TO> tableCellConverter)
|
|
Table<E> |
TableViewImpl.processTableCells(Table.TableCellVisitor<E> tableCellVisitor)
|
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||