Uses of Class
org.djutils.data.Column
Packages that use Column
Package
Description
Classes for sampling simulation data.
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 ColumnModifier and TypeMethodDescriptionColumn<?>
Table.getColumn
(int columnNumber) Return a specific column.Methods in org.djutils.data that return types with arguments of type ColumnModifier and TypeMethodDescriptionorg.djutils.immutablecollections.ImmutableList<Column<?>>
Table.getColumns()
Returns the list of columns.Methods in org.djutils.data with parameters of type ColumnModifier and TypeMethodDescriptionint
Table.getColumnNumber
(Column<?> column) Returns the number of the column in this table.<T> T
Returns the column value in this row.Method parameters in org.djutils.data with type arguments of type ColumnModifier and TypeMethodDescriptionvoid
Adds a row to the table.Constructor parameters in org.djutils.data with type arguments of type ColumnModifierConstructorDescriptionListTable
(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 ColumnModifier and TypeMethodDescriptionstatic <T> T
TextSerializer.deserialize
(TextSerializer<?> serializer, String text, Column<?> column) Helper function to deal with casting when callingTextSerializer.deserialize()
.