Uses of Class
org.djutils.data.Column
-
Packages that use Column Package Description org.djutils.data Classes for sampling simulation data.org.djutils.data.serialization The serialization package takes care of (de)serializing data of different types to/from Strings. -
-
Uses of Column in org.djutils.data
Methods in org.djutils.data that return Column Modifier and Type Method Description Column<?>
Table. getColumn(int columnNumber)
Return a specific column.Methods in org.djutils.data that return types with arguments of type Column Modifier and Type Method Description ImmutableList<Column<?>>
Table. getColumns()
Returns the list of columns.Methods in org.djutils.data with parameters of type Column Modifier and Type Method Description int
Table. getColumnNumber(Column<?> column)
Returns the number of the column in this table.<T> T
Row. getValue(Column<T> column)
Returns the column value in this row.Method parameters in org.djutils.data with type arguments of type Column Modifier and Type Method Description void
ListTable. addRow(Map<Column<?>,Object> data)
Adds a row to the table.Constructor parameters in org.djutils.data with type arguments of type Column Constructor Description ListTable(String id, String description, Collection<Column<?>> columns)
Constructor.Table(String id, String description, Collection<Column<?>> columns)
Constructor. -
Uses of Column in org.djutils.data.serialization
Methods in org.djutils.data.serialization with parameters of type Column Modifier and Type Method Description static <T> T
TextSerializer. deserialize(TextSerializer<?> serializer, String text, Column<?> column)
Helper function to deal with casting when callingTextSerializer.deserialize()
.
-