View Javadoc
1   package org.opentrafficsim.road.gtu.strategical;
2   
3   import java.io.Serializable;
4   
5   import org.opentrafficsim.core.gtu.GTUDirectionality;
6   import org.opentrafficsim.core.gtu.GTUType;
7   import org.opentrafficsim.core.gtu.behavioralcharacteristics.BehavioralCharacteristics;
8   import org.opentrafficsim.core.gtu.plan.tactical.TacticalPlanner;
9   import org.opentrafficsim.core.network.Link;
10  import org.opentrafficsim.core.network.LinkDirection;
11  import org.opentrafficsim.core.network.NetworkException;
12  import org.opentrafficsim.core.network.Node;
13  import org.opentrafficsim.core.network.route.Route;
14  import org.opentrafficsim.road.gtu.lane.LaneBasedGTU;
15  
16  /**
17   * <p>
18   * Copyright (c) 2013-2016 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
19   * BSD-style license. See <a href="http://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>.
20   * </p>
21   * $LastChangedDate: 2015-07-24 02:58:59 +0200 (Fri, 24 Jul 2015) $, @version $Revision: 1147 $, by $Author: averbraeck $,
22   * initial version Mar 31, 2016 <br>
23   * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
24   * @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
25   */
26  public class LaneBasedStrategicalPlannerNone extends AbstractLaneBasedStrategicalPlanner implements Serializable
27  {
28  
29      /** */
30      private static final long serialVersionUID = 20150724L;
31  
32      /**
33       * Constructor.
34       * @param gtu GTU
35       */
36      public LaneBasedStrategicalPlannerNone(final LaneBasedGTU gtu)
37      {
38          super(new BehavioralCharacteristics(), gtu);
39      }
40  
41      /** {@inheritDoc} */
42      @Override
43      public TacticalPlanner generateTacticalPlanner()
44      {
45          return null;
46      }
47  
48      /** {@inheritDoc} */
49      @Override
50      public Node nextNode(Link link, GTUDirectionality direction, GTUType gtuType) throws NetworkException
51      {
52          return null;
53      }
54  
55      /** {@inheritDoc} */
56      @Override
57      public LinkDirection nextLinkDirection(Link link, GTUDirectionality direction, GTUType gtuType)
58          throws NetworkException
59      {
60          return null;
61      }
62  
63      /** {@inheritDoc} */
64      @Override
65      public Node nextNode(Node node, Link previousLink, GTUType gtuType) throws NetworkException
66      {
67          return null;
68      }
69  
70      /** {@inheritDoc} */
71      @Override
72      public LinkDirection nextLinkDirection(Node node, Link previousLink, GTUType gtuType) throws NetworkException
73      {
74          return null;
75      }
76      
77      /** {@inheritDoc} */
78      @Override
79      public Route getRoute()
80      {
81          return null;
82      }
83  
84      /** {@inheritDoc} */
85      @Override
86      public final String toString()
87      {
88          return "LaneBasedStrategicalPlannerNone []";
89      }
90  
91  }
92