Uses of Interface
com.github.martincooper.datatable.IDataColumn
Packages that use IDataColumn
-
Uses of IDataColumn in com.github.martincooper.datatable
Classes in com.github.martincooper.datatable that implement IDataColumnMethods in com.github.martincooper.datatable that return IDataColumnModifier and TypeMethodDescriptionColumnValuePair.column()The column.Accessor to a specific column by index.Accessor to a specific column by name.Accessor to a specific column by index.Accessor to a specific column by name.DataColumnCollection.get(int index) Returns the IDataColumn at the specified index.Returns the IDataColumn by name.Methods in com.github.martincooper.datatable that return types with arguments of type IDataColumnModifier and TypeMethodDescriptionio.vavr.control.Try<IDataColumn>Attempts to add / append a new item to the end of the column.io.vavr.control.Try<IDataColumn>DataColumn.buildFromRows(io.vavr.collection.Seq<Integer> rowIndexes) Builds a new DataColumn from the data at the specified row indexes.io.vavr.control.Try<IDataColumn>IDataColumn.buildFromRows(io.vavr.collection.Seq<Integer> rowIndexes) Builds a new DataColumn from the data in the specified row indexes.io.vavr.control.Try<IDataColumn>Attempts to insert a new item into the column.DataColumnCollection.iterator()Returns an iterator over elements of type IDataColumn.io.vavr.control.Try<IDataColumn>Attempts to remove an existing item at the specified index.io.vavr.control.Try<IDataColumn>Attempts to replace an existing item with a new item in the column.io.vavr.control.Try<IDataColumn>DataColumnCollection.tryGet(int index) Returns the IDataColumn at the specified index.io.vavr.control.Try<IDataColumn>Returns the IDataColumn by name.Methods in com.github.martincooper.datatable with parameters of type IDataColumnModifier and TypeMethodDescriptionio.vavr.control.Try<DataTable>DataColumnCollection.add(IDataColumn newColumn) Adds a IDataColumn to the column collection.static io.vavr.control.Try<DataTable>DataTable.build(String tableName, IDataColumn[] columns) Builds an instance of a DataTable.io.vavr.control.Try<DataTable>DataColumnCollection.insert(IDataColumn currentColumn, IDataColumn newColumn) Inserts a new column after the specified column.io.vavr.control.Try<DataTable>DataColumnCollection.insert(Integer index, IDataColumn newColumn) Inserts a new column at the specified index.io.vavr.control.Try<DataTable>DataColumnCollection.insert(String columnName, IDataColumn newColumn) Inserts a column after an existing column.io.vavr.control.Try<R>IModifiableByColumn.insert(IDataColumn oldColumn, IDataColumn newColumn) Inserts a new column after the specified column.io.vavr.control.Try<DataTable>DataColumnCollection.remove(IDataColumn columnToRemove) Removes the specified column.io.vavr.control.Try<R>IModifiableByColumn.remove(IDataColumn oldColumn) Removes the specified column.io.vavr.control.Try<DataTable>DataColumnCollection.replace(IDataColumn oldColumn, IDataColumn newColumn) Replaces the old column with the new column.io.vavr.control.Try<DataTable>DataColumnCollection.replace(Integer index, IDataColumn newColumn) Replaces the column at the specified index with the new column.io.vavr.control.Try<DataTable>DataColumnCollection.replace(String columnName, IDataColumn newColumn) Replaces the old column with the new column.io.vavr.control.Try<R>IModifiableByColumn.replace(IDataColumn oldColumn, IDataColumn newColumn) Replaces the old column with the new column.Method parameters in com.github.martincooper.datatable with type arguments of type IDataColumnModifier and TypeMethodDescriptionstatic io.vavr.control.Try<DataTable>DataTable.build(String tableName, io.vavr.collection.Stream<IDataColumn> columns) Builds an instance of a DataTable.static io.vavr.control.Try<DataTable>DataTable.build(String tableName, Iterable<IDataColumn> columns) Builds an instance of a DataTable.<U> io.vavr.collection.Seq<U>DataColumnCollection.map(Function<? super IDataColumn, ? extends U> mapper) Map implementation for the DataColumnCollection class. -
Uses of IDataColumn in com.github.martincooper.datatable.sorting
Methods in com.github.martincooper.datatable.sorting that return types with arguments of type IDataColumnModifier and TypeMethodDescriptionio.vavr.control.Try<IDataColumn>Returns the column from the table.