Package org.opentrafficsim.kpi.sampling
Interface Column<T>
-
- Type Parameters:
T
- type of value
- All Superinterfaces:
Identifiable
- All Known Implementing Classes:
SimpleColumn
public interface Column<T> extends 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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getDescription()
Returns the column description.java.lang.Class<T>
getValueType()
Returns the type of the values in the column.-
Methods inherited from interface org.opentrafficsim.base.Identifiable
getId
-
-
-
-
Method Detail
-
getDescription
java.lang.String getDescription()
Returns the column description.- Returns:
- String; column description
-
getValueType
java.lang.Class<T> getValueType()
Returns the type of the values in the column.- Returns:
- Class<?>; type of the values in the column
-
-