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, 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
ConstructorsConstructorDescriptionSpaceTimeRegion(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.LengthReturns the value of theendPositionrecord component.org.djunits.value.vdouble.scalar.TimeendTime()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.org.djunits.value.vdouble.scalar.LengthReturns the value of thestartPositionrecord component.org.djunits.value.vdouble.scalar.TimeReturns the value of thestartTimerecord component.final StringtoString()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- 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
public org.djunits.value.vdouble.scalar.Length startPosition()Returns the value of thestartPositionrecord component.- Returns:
- the value of the
startPositionrecord component
-
endPosition
public org.djunits.value.vdouble.scalar.Length endPosition()Returns the value of theendPositionrecord component.- Returns:
- the value of the
endPositionrecord component
-
startTime
public org.djunits.value.vdouble.scalar.Time startTime()Returns the value of thestartTimerecord component.- Returns:
- the value of the
startTimerecord component
-
endTime
public org.djunits.value.vdouble.scalar.Time endTime()Returns the value of theendTimerecord component.- Returns:
- the value of the
endTimerecord component
-