View Javadoc
1   package org.opentrafficsim.road.network.factory.vissim;
2   
3   import java.io.Serializable;
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/docs/license.html">OpenTrafficSim License</a>.
9    * <p>
10   * $LastChangedDate: 2019-01-06 01:39:32 +0100 (Sun, 06 Jan 2019) $, @version $Revision: 4833 $, by $Author: averbraeck $,
11   * initial version Jul 23, 2015 <br>
12   * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
13   */
14  class LaneTag implements Serializable
15  {
16      /** */
17      private static final long serialVersionUID = 20150723L;
18  
19      /** linkNo, cannot be null in implementation of Lane. */
20      @SuppressWarnings("checkstyle:visibilitymodifier")
21      String linkNo = "";
22  
23      /** laneNo, cannot be null in implementation of Lane. */
24      @SuppressWarnings("checkstyle:visibilitymodifier")
25      String laneNo = "";
26  
27      /** width, cannot be null in implementation of lane. */
28      @SuppressWarnings("checkstyle:visibilitymodifier")
29      String width = "";
30  
31      /** Class name of the TrafficLight. */
32      @SuppressWarnings("checkstyle:visibilitymodifier")
33      String className = null;
34  
35      /** {@inheritDoc} */
36      @Override
37      public final String toString()
38      {
39          return "LaneTag [laneName=" + this.laneNo + ", linkNo=" + this.linkNo + ", className=" + this.className + "]";
40      }
41  
42  }