1   package org.opentrafficsim.road.gtu.lane.perception.headway;
2   
3   import java.util.Set;
4   
5   import org.djunits.value.vdouble.scalar.Length;
6   import org.djutils.immutablecollections.ImmutableSet;
7   import org.opentrafficsim.core.gtu.GTUException;
8   import org.opentrafficsim.road.gtu.lane.perception.RelativeLane;
9   import org.opentrafficsim.road.network.lane.Lane;
10  import org.opentrafficsim.road.network.lane.object.BusStop;
11  
12  
13  
14  
15  
16  
17  
18  
19  
20  
21  
22  public class HeadwayBusStop extends AbstractHeadwayLaneBasedObject
23  {
24  
25      
26      private static final long serialVersionUID = 20170127L;
27  
28      
29      private final RelativeLane relativeLane;
30  
31      
32      private final ImmutableSet<String> lines;
33  
34      
35      private final Set<String> conflictIds;
36  
37      
38  
39  
40  
41  
42  
43  
44  
45      public HeadwayBusStop(final BusStop busStop, final Length distance, final RelativeLane relativeLane,
46              final Set<String> conflictIds, final Lane lane) throws GTUException
47      {
48          super(ObjectType.BUSSTOP, busStop.getId(), distance, lane);
49          this.relativeLane = relativeLane;
50          this.lines = busStop.getLines();
51          this.conflictIds = conflictIds;
52      }
53  
54      
55  
56  
57      public final RelativeLane getRelativeLane()
58      {
59          return this.relativeLane;
60      }
61  
62      
63  
64  
65      public final ImmutableSet<String> getLines()
66      {
67          return this.lines;
68      }
69  
70      
71  
72  
73      public final Set<String> getConflictIds()
74      {
75          return this.conflictIds;
76      }
77  
78      
79      @Override
80      public final String toString()
81      {
82          return "HeadwayBusStop [relativeLane=" + this.relativeLane + ", lines=" + this.lines + ", conflictIds="
83                  + this.conflictIds + "]";
84      }
85  
86  }