Uses of Interface
org.omnaest.utils.structure.table.Table.Column

Packages that use Table.Column
org.omnaest.utils.structure.table.concrete   
org.omnaest.utils.structure.table.concrete.internal   
org.omnaest.utils.structure.table.concrete.internal.selection   
org.omnaest.utils.structure.table.concrete.internal.selection.data   
org.omnaest.utils.structure.table.concrete.internal.selection.scannable   
org.omnaest.utils.structure.table.concrete.predicates   
org.omnaest.utils.structure.table.concrete.predicates.internal.filter   
org.omnaest.utils.structure.table.concrete.predicates.internal.joiner   
org.omnaest.utils.structure.table.internal   
org.omnaest.utils.structure.table.subspecification   
org.omnaest.utils.structure.table.view.concrete   
 

Uses of Table.Column in org.omnaest.utils.structure.table.concrete
 

Methods in org.omnaest.utils.structure.table.concrete that return Table.Column
 Table.Column<E> ArrayTable.addColumnCellElements(int columnIndexPosition, List<? extends E> columnCellElementList)
           
 Table.Column<E> ArrayTable.addColumnCellElements(List<? extends E> columnCellElementList)
           
 Table.Column<E> ArrayTable.getColumn(int columnIndexPosition)
           
 Table.Column<E> ArrayTable.getColumn(Object columnTitleValue)
           
 Table.Column<E> TableAbstract.getFirstColumn()
           
 Table.Column<E> TableAbstract.getLastColumn()
           
 

Methods in org.omnaest.utils.structure.table.concrete that return types with arguments of type Table.Column
 Iterable<Table.Column<E>> TableBasic.columns()
           
 List<Table.Column<E>> TableAbstract.getColumnList()
           
 Iterator<Table.Column<E>> TableBasic.iteratorColumn()
           
 

Methods in org.omnaest.utils.structure.table.concrete with parameters of type Table.Column
 List<E> TableAbstract.removeColumn(Table.Column<E> column)
           
 

Uses of Table.Column in org.omnaest.utils.structure.table.concrete.internal
 

Classes in org.omnaest.utils.structure.table.concrete.internal that implement Table.Column
 class StripeAbstract<E>
           
 class StripeImpl<E>
           
 

Uses of Table.Column in org.omnaest.utils.structure.table.concrete.internal.selection
 

Methods in org.omnaest.utils.structure.table.concrete.internal.selection with parameters of type Table.Column
 TableSelectable.Selection<E> SelectionImpl.columns(Table.Column<E>... columns)
           
 TableSelectable.Selection<E> SelectionImpl.orderBy(Table.Column<E> column)
           
 TableSelectable.Selection<E> SelectionImpl.orderBy(Table.Column<E> column, TableSelectable.Selection.Order order)
           
 

Uses of Table.Column in org.omnaest.utils.structure.table.concrete.internal.selection.data
 

Fields in org.omnaest.utils.structure.table.concrete.internal.selection.data declared as Table.Column
protected  Table.Column<E> ColumnOrder.column
           
 

Fields in org.omnaest.utils.structure.table.concrete.internal.selection.data with type parameters of type Table.Column
protected  List<Table.Column<E>> TableBlock.columnList
           
protected  Map<Table.Column<E>,ScannableStripeDataContainer<E>> TableBlock.columnToScannableStripeDataContainerMap
           
 

Methods in org.omnaest.utils.structure.table.concrete.internal.selection.data that return Table.Column
protected  Table.Column<E> ColumnOrder.getColumn()
           
 

Methods in org.omnaest.utils.structure.table.concrete.internal.selection.data that return types with arguments of type Table.Column
 List<Table.Column<E>> TableBlock.getColumnList()
           
 List<Table.Column<E>> SelectionData.getColumnList()
           
 Map<Table.Column<E>,TableSelectable.Selection.Order> SelectionData.getColumnToOrderMap()
           
 Map<Table.Column<E>,ScannableStripeDataContainer<E>> TableBlock.getColumnToScannableStripeDataContainerMap()
           
 

Constructors in org.omnaest.utils.structure.table.concrete.internal.selection.data with parameters of type Table.Column
ColumnOrder(Table.Column<E> column, TableSelectable.Selection.Order order)
           
 

Uses of Table.Column in org.omnaest.utils.structure.table.concrete.internal.selection.scannable
 

Methods in org.omnaest.utils.structure.table.concrete.internal.selection.scannable with parameters of type Table.Column
protected  boolean ScannableStripeDataContainerIndex.createIndex(TableInternal<E> tableInternal, Table.Column<E> column)
           
protected  boolean ScannableStripeDataContainerFullScan.createIndex(TableInternal<E> tableInternal, Table.Column<E> column)
           
 

Constructors in org.omnaest.utils.structure.table.concrete.internal.selection.scannable with parameters of type Table.Column
ScannableStripeDataContainerFullScan(TableInternal<E> tableInternal, Table.Column<E> column)
           
ScannableStripeDataContainerIndex(TableInternal<E> tableInternal, Table.Column<E> column)
           
 

Uses of Table.Column in org.omnaest.utils.structure.table.concrete.predicates
 

Methods in org.omnaest.utils.structure.table.concrete.predicates with parameters of type Table.Column
static
<E> TableSelectable.Predicate<E>
PredicateFactory.columnValueEquals(E element, Table.Column<E>... columns)
           
static
<E> TableSelectable.Predicate<E>
PredicateFactory.columnValueEquals(Table.Column<E> column, E element)
           
static
<E> TableSelectable.Predicate<E>
PredicateFactory.columnValueIsBetween(E elementFrom, E elementTo, Table.Column<E>... columns)
           
static
<E> TableSelectable.Predicate<E>
PredicateFactory.columnValueIsBetween(Table.Column<E> column, E elementFrom, E elementTo)
           
static
<E> TableSelectable.Predicate<E>
PredicateFactory.columnValueIsIn(Collection<E> elementCollection, Table.Column<E>... columns)
           
static
<E> TableSelectable.Predicate<E>
PredicateFactory.columnValueIsIn(Table.Column<E> column, Collection<E> elementCollection)
           
static
<E> TableSelectable.Predicate<E>
PredicateFactory.columnValueIsIn(Table.Column<E> column, E... elements)
           
static
<E> TableSelectable.Predicate<E>
PredicateFactory.equalColumns(Table.Column<E>... columns)
           
 

Method parameters in org.omnaest.utils.structure.table.concrete.predicates with type arguments of type Table.Column
static
<E> TableSelectable.Predicate<E>
PredicateFactory.columnValueEquals(Collection<Table.Column<E>> columnCollection, E element)
           
static
<E> TableSelectable.Predicate<E>
PredicateFactory.columnValueIsBetween(Collection<Table.Column<E>> columnCollection, E elementFrom, E elementTo)
           
static
<E> TableSelectable.Predicate<E>
PredicateFactory.columnValueIsIn(Collection<Table.Column<E>> columnCollection, Collection<E> elementCollection)
           
static
<E> TableSelectable.Predicate<E>
PredicateFactory.columnValueIsIn(Collection<Table.Column<E>> columnCollection, E... elements)
           
 

Uses of Table.Column in org.omnaest.utils.structure.table.concrete.predicates.internal.filter
 

Fields in org.omnaest.utils.structure.table.concrete.predicates.internal.filter with type parameters of type Table.Column
protected  Collection<Table.Column<E>> ColumnValueIsIn.columnCollection
           
protected  Collection<Table.Column<E>> ColumnValueIsBetween.columnCollection
           
protected  Collection<Table.Column<E>> ColumnValueEquals.columnCollection
           
 

Methods in org.omnaest.utils.structure.table.concrete.predicates.internal.filter that return Table.Column
 Table.Column<E>[] PredicateFilter.getRequiredColumns()
          Returns the Table.Columns which are required for this PredicateFilter
 Table.Column<E>[] ColumnValueIsIn.getRequiredColumns()
           
 Table.Column<E>[] ColumnValueIsBetween.getRequiredColumns()
           
 Table.Column<E>[] ColumnValueEquals.getRequiredColumns()
           
 Table.Column<E>[] ColumnHaveDistinctRows.getRequiredColumns()
           
 

Constructors in org.omnaest.utils.structure.table.concrete.predicates.internal.filter with parameters of type Table.Column
ColumnValueEquals(E element, Table.Column<E>... columns)
           
ColumnValueEquals(Table.Column<E> column, E element)
           
ColumnValueIsBetween(E elementFrom, E elementTo, Table.Column<E>... columns)
           
ColumnValueIsBetween(Table.Column<E> column, E elementFrom, E elementTo)
           
ColumnValueIsIn(Collection<E> elementCollection, Table.Column<E>... columns)
           
ColumnValueIsIn(Table.Column<E> column, Collection<E> elementCollection)
           
ColumnValueIsIn(Table.Column<E> column, E... elements)
           
 

Constructor parameters in org.omnaest.utils.structure.table.concrete.predicates.internal.filter with type arguments of type Table.Column
ColumnValueEquals(Collection<Table.Column<E>> columnCollection, E element)
           
ColumnValueIsBetween(Collection<Table.Column<E>> columnCollection, E elementFrom, E elementTo)
           
ColumnValueIsIn(Collection<Table.Column<E>> columnCollection, Collection<E> elementCollection)
           
ColumnValueIsIn(Collection<Table.Column<E>> columnCollection, E... elements)
           
 

Uses of Table.Column in org.omnaest.utils.structure.table.concrete.predicates.internal.joiner
 

Fields in org.omnaest.utils.structure.table.concrete.predicates.internal.joiner with type parameters of type Table.Column
protected  Map<TableInternal<E>,List<Table.Column<E>>> EqualColumns.tableInternalToColumnListMap
           
 

Methods in org.omnaest.utils.structure.table.concrete.predicates.internal.joiner that return Table.Column
 Table.Column<E>[] PredicateJoinerCollector.getRequiredColumns()
           
 Table.Column<E>[] PredicateJoiner.getRequiredColumns()
          Returns the Table.Columns which are required for this PredicateJoiner
 Table.Column<E>[] EqualColumns.getRequiredColumns()
           
 

Constructor parameters in org.omnaest.utils.structure.table.concrete.predicates.internal.joiner with type arguments of type Table.Column
EqualColumns(List<Table.Column<E>> columnList)
           
 

Uses of Table.Column in org.omnaest.utils.structure.table.internal
 

Subinterfaces of Table.Column in org.omnaest.utils.structure.table.internal
static interface TableInternal.StripeInternal<E>
           
 

Uses of Table.Column in org.omnaest.utils.structure.table.subspecification
 

Methods in org.omnaest.utils.structure.table.subspecification that return Table.Column
 Table.Column<E> TableCore.addColumnCellElements(int columnIndexPosition, List<? extends E> columnCellElementList)
          Adds a Table.Column to the Table with the given Table.CellImmutable.getElement()s at the given index position of the Table.Columns.
 Table.Column<E> TableCore.addColumnCellElements(List<? extends E> columnCellElementList)
          Adds a Table.Column to the Table with the given Table.CellImmutable.getElement()s at the end of the Table.Columns.
 Table.Column<E> TableCoreImmutable.getColumn(int columnIndexPosition)
          Returns a Table.Column for the given Table.Column index position.
 Table.Column<E> TableCoreImmutable.getColumn(Object columnTitleValue)
          Returns a Table.Column for the given Table.Column title value.
 Table.Column<E> TableCoreImmutable.getFirstColumn()
          Returns the first Table.Column of the Table
 Table.Column<E> TableCoreImmutable.getLastColumn()
          Returns the last Table.Column of the Table
 

Methods in org.omnaest.utils.structure.table.subspecification that return types with arguments of type Table.Column
 Iterable<Table.Column<E>> TableCoreImmutable.columns()
          Iterable over all Table.Columns
 List<Table.Column<E>> TableCoreImmutable.getColumnList()
          Returns a List of all Table.Columns
 Iterator<Table.Column<E>> TableCoreImmutable.iteratorColumn()
          Returns an Iterator over all Table.Columns
 

Methods in org.omnaest.utils.structure.table.subspecification with parameters of type Table.Column
 TableSelectable.Selection<E> TableSelectable.Selection.columns(Table.Column<E>... columns)
          Sets the Table.Columns of the TableSelectable.Selection.
 TableSelectable.Selection<E> TableSelectable.Selection.orderBy(Table.Column<E> column)
          Orders the TableSelectable.Selection after the given Table.Column by TableSelectable.Selection.Order.ASCENDING
 TableSelectable.Selection<E> TableSelectable.Selection.orderBy(Table.Column<E> column, TableSelectable.Selection.Order order)
          Adds a Table.Column and TableSelectable.Selection.Order declaration for a TableSelectable.Selection which results in an ordered Table after the given Table.Column by the given TableSelectable.Selection.Order.
 List<E> TableCore.removeColumn(Table.Column<E> column)
          Removes the given Table.Column from the Table
 

Uses of Table.Column in org.omnaest.utils.structure.table.view.concrete
 

Methods in org.omnaest.utils.structure.table.view.concrete that return Table.Column
 Table.Column<E> TableViewImpl.getColumn(int columnIndexPosition)
           
 Table.Column<E> TableViewImpl.getColumn(Object columnTitleValue)
           
 Table.Column<E> TableViewImpl.getFirstColumn()
           
 Table.Column<E> TableViewImpl.getLastColumn()
           
 

Methods in org.omnaest.utils.structure.table.view.concrete that return types with arguments of type Table.Column
 Iterable<Table.Column<E>> TableViewImpl.columns()
           
 List<Table.Column<E>> TableViewImpl.getColumnList()
           
 Iterator<Table.Column<E>> TableViewImpl.iteratorColumn()
           
 



Copyright © 2011. All Rights Reserved.