Uses of Interface
org.djutils.data.DataColumn
-
Packages that use DataColumn Package Description org.djutils.data Data collection utilities. -
-
Uses of DataColumn in org.djutils.data
Classes in org.djutils.data that implement DataColumn Modifier and Type Class Description class
SimpleDataColumn<T>
SimpleColumn implements the Column interface with a single value.Methods in org.djutils.data that return types with arguments of type DataColumn Modifier and Type Method Description ImmutableList<DataColumn<?>>
AbstractDataTable. getColumns()
Returns the list of columns.ImmutableList<DataColumn<?>>
DataTable. getColumns()
Returns the list of columns.Methods in org.djutils.data with parameters of type DataColumn Modifier and Type Method Description <T> T
DataRecord. getValue(DataColumn<T> column)
Returns the column value of this record.<T> T
ListDataTable.ListRecord. getValue(DataColumn<T> column)
Returns the column value of this record.Method parameters in org.djutils.data with type arguments of type DataColumn Modifier and Type Method Description void
ListDataTable. addRecordByColumns(Map<DataColumn<?>,Object> data)
Adds a record to the table, based on a map with columns and values.void
ListDataTable. addRecordByColumns(ImmutableMap<DataColumn<?>,Object> data)
Adds a record to the table, based on an immutable map with columns and values.Constructor parameters in org.djutils.data with type arguments of type DataColumn Constructor Description AbstractDataTable(String id, String description, ImmutableList<DataColumn<?>> columns)
Constructor for the data table using an ImmutableCollection for the columns.ListDataTable(String id, String description, Collection<DataColumn<?>> columns)
Constructor with a regular collection.ListDataTable(String id, String description, ImmutableList<DataColumn<?>> columns)
Constructor with an immutable list.
-