Package org.djutils.data
Interface DataColumn<T>
- Type Parameters:
T
- type of value
- All Superinterfaces:
org.djutils.base.Identifiable
- All Known Implementing Classes:
SimpleDataColumn
public interface DataColumn<T>
extends org.djutils.base.Identifiable
Meta data of data in a column.
Copyright (c) 2020-2020 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See OpenTrafficSim License.
- Author:
- Alexander Verbraeck, Peter Knoppers, Wouter Schakel
-
Method Summary
Modifier and Type Method Description String
getDescription()
Returns the column description.Class<T>
getValueType()
Returns the type of the values in the column.
-
Method Details
-
getDescription
String getDescription()Returns the column description.- Returns:
- String; column description
-
getValueType
Returns the type of the values in the column.- Returns:
- Class<?>; type of the values in the column
-