1 package org.opentrafficsim.xml.bindings;
2
3 import org.opentrafficsim.road.network.lane.changing.LaneKeepingPolicy;
4 import org.opentrafficsim.xml.bindings.types.LaneKeepingPolicyType;
5
6 /**
7 * LaneKeepingAdapter to convert between XML representations of LaneKeeping and an enum type.
8 * <p>
9 * Copyright (c) 2013-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 LaneKeepingPolicyAdapter extends StaticFieldAdapter<LaneKeepingPolicy, LaneKeepingPolicyType>
15 {
16
17 /**
18 * Constructor.
19 */
20 public LaneKeepingPolicyAdapter()
21 {
22 super(LaneKeepingPolicy.class, LaneKeepingPolicyType.class);
23 }
24
25 }