View Javadoc
1   package org.opentrafficsim.xml.bindings;
2   
3   import org.opentrafficsim.road.od.Interpolation;
4   import org.opentrafficsim.xml.bindings.types.InterpolationType;
5   
6   /**
7    * Adapter for Interpolation expression type.
8    * <p>
9    * Copyright (c) 2023-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
10   * BSD-style license. See <a href="https://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>.
11   * </p>
12   * @author <a href="https://github.com/wjschakel">Wouter Schakel</a>
13   */
14  public class InterpolationAdapter extends StaticFieldAdapter<Interpolation, InterpolationType>
15  {
16  
17      /**
18       * Constructor.
19       */
20      public InterpolationAdapter()
21      {
22          super(Interpolation.class, InterpolationType.class);
23      }
24  
25  }