Package org.opentrafficsim.kpi.sampling
Interface Record
-
- All Known Implementing Classes:
ListTable.ListRecord
public interface Record
Consistent set of values corresponding to columns.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 Object
getValue(String id)
Returns the column value of this record.<T> T
getValue(Column<T> column)
Returns the column value of this record.
-
-
-
Method Detail
-
getValue
<T> T getValue(Column<T> column)
Returns the column value of this record.- Type Parameters:
T
- value type- Parameters:
column
- Column<T>; column- Returns:
- the column value in this record
-
-