Class ExtendedDataString<G extends GtuData>
- java.lang.Object
-
- org.opentrafficsim.kpi.sampling.data.ExtendedDataType<T,List<T>,List<T>,G>
-
- org.opentrafficsim.kpi.sampling.data.ExtendedDataList<String,G>
-
- org.opentrafficsim.kpi.sampling.data.ExtendedDataString<G>
-
- Type Parameters:
G- gtu data type
- All Implemented Interfaces:
Identifiable
public abstract class ExtendedDataString<G extends GtuData> extends ExtendedDataList<String,G>
Extended data type for string values.Copyright (c) 2013-2023 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
-
-
Constructor Summary
Constructors Constructor Description ExtendedDataString(String id, String description)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringparseValue(String string)Parses a stored string representation to original type.-
Methods inherited from class org.opentrafficsim.kpi.sampling.data.ExtendedDataList
convert, getOutputValue, getStorageValue, initializeStorage, setValue
-
Methods inherited from class org.opentrafficsim.kpi.sampling.data.ExtendedDataType
equals, getDescription, getId, getType, getValue, hashCode, interpolate, toString
-
-
-
-
Method Detail
-
parseValue
public String parseValue(String string)
Parses a stored string representation to original type.- Specified by:
parseValuein classExtendedDataType<String,List<String>,List<String>,G extends GtuData>- Parameters:
string- String; stored string representation- Returns:
- T; value in original type
-
-