Package org.opentrafficsim.kpi.sampling
Record Class SpaceTimeRegion<L extends LaneData<L>>
java.lang.Object
java.lang.Record
org.opentrafficsim.kpi.sampling.SpaceTimeRegion<L>
- Type Parameters:
L- lane data type- Record Components:
lane- lanestartPosition- start positionendPosition- end positionstartTime- start timeendTime- end time
public record SpaceTimeRegion<L extends LaneData<L>>(L extends LaneData<L> lane, Length startPosition, Length endPosition, Duration startTime, Duration endTime)
extends Record
Defines a rectangular region over space and time on a lane.
Copyright (c) 2013-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See OpenTrafficSim License.
- Author:
- Alexander Verbraeck, Peter Knoppers, Wouter Schakel
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theendPositionrecord component.endTime()Returns the value of theendTimerecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.lane()Returns the value of thelanerecord component.Returns the value of thestartPositionrecord component.Returns the value of thestartTimerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
SpaceTimeRegion
public SpaceTimeRegion(L lane, Length startPosition, Length endPosition, Duration startTime, Duration endTime) Creates a space-time region.- Parameters:
lane- lanestartPosition- start positionendPosition- end positionstartTime- start timeendTime- end time- Throws:
IllegalArgumentException- if start time is larger than end time
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
lane
Returns the value of thelanerecord component.- Returns:
- the value of the
lanerecord component
-
startPosition
Returns the value of thestartPositionrecord component.- Returns:
- the value of the
startPositionrecord component
-
endPosition
Returns the value of theendPositionrecord component.- Returns:
- the value of the
endPositionrecord component
-
startTime
Returns the value of thestartTimerecord component.- Returns:
- the value of the
startTimerecord component
-
endTime
Returns the value of theendTimerecord component.- Returns:
- the value of the
endTimerecord component
-