View Javadoc
1   package org.opentrafficsim.kpi.sampling.data;
2   
3   import org.opentrafficsim.kpi.interfaces.GtuDataInterface;
4   
5   /**
6    * <p>
7    * Copyright (c) 2013-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
8    * BSD-style license. See <a href="http://opentrafficsim.org/node/13">OpenTrafficSim License</a>.
9    * <p>
10   * @version $Revision$, $LastChangedDate$, by $Author$, initial version 19 mrt. 2019 <br>
11   * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
12   * @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
13   * @author <a href="http://www.transport.citg.tudelft.nl">Wouter Schakel</a>
14   * @param <G> gtu data type
15   */
16  public abstract class ExtendedDataTypeString<G extends GtuDataInterface> extends ExtendedDataTypeList<String, G>
17  {
18  
19      /**
20       * @param id String; id
21       */
22      public ExtendedDataTypeString(final String id)
23      {
24          super(id);
25      }
26  
27      /** {@inheritDoc} */
28      @Override
29      public String formatValue(final String format, final String value)
30      {
31          return value;
32      }
33  
34  }