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
- L; lanestartPosition
- Length; start positionendPosition
- Length; end positionstartTime
- Time; start timeendTime
- Time; end time
public record SpaceTimeRegion<L extends LaneData<L>>(L extends LaneData<L> lane, org.djunits.value.vdouble.scalar.Length startPosition, org.djunits.value.vdouble.scalar.Length endPosition, org.djunits.value.vdouble.scalar.Time startTime, org.djunits.value.vdouble.scalar.Time 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
ConstructorDescriptionSpaceTimeRegion
(L lane, org.djunits.value.vdouble.scalar.Length startPosition, org.djunits.value.vdouble.scalar.Length endPosition, org.djunits.value.vdouble.scalar.Time startTime, org.djunits.value.vdouble.scalar.Time endTime) Creates a space-time region. -
Method Summary
Modifier and TypeMethodDescriptionorg.djunits.value.vdouble.scalar.Length
Returns the value of theendPosition
record component.org.djunits.value.vdouble.scalar.Time
endTime()
Returns the value of theendTime
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.lane()
Returns the value of thelane
record component.org.djunits.value.vdouble.scalar.Length
Returns the value of thestartPosition
record component.org.djunits.value.vdouble.scalar.Time
Returns the value of thestartTime
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
SpaceTimeRegion
public SpaceTimeRegion(L lane, org.djunits.value.vdouble.scalar.Length startPosition, org.djunits.value.vdouble.scalar.Length endPosition, org.djunits.value.vdouble.scalar.Time startTime, org.djunits.value.vdouble.scalar.Time endTime) Creates a space-time region.- Parameters:
lane
- L; lanestartPosition
- Length; start positionendPosition
- Length; end positionstartTime
- Time; start timeendTime
- Time; 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 thelane
record component.- Returns:
- the value of the
lane
record component
-
startPosition
public org.djunits.value.vdouble.scalar.Length startPosition()Returns the value of thestartPosition
record component.- Returns:
- the value of the
startPosition
record component
-
endPosition
public org.djunits.value.vdouble.scalar.Length endPosition()Returns the value of theendPosition
record component.- Returns:
- the value of the
endPosition
record component
-
startTime
public org.djunits.value.vdouble.scalar.Time startTime()Returns the value of thestartTime
record component.- Returns:
- the value of the
startTime
record component
-
endTime
public org.djunits.value.vdouble.scalar.Time endTime()Returns the value of theendTime
record component.- Returns:
- the value of the
endTime
record component
-