Package org.opentrafficsim.draw.graphs
Record Class GraphPath.Section<L>
java.lang.Object
java.lang.Record
org.opentrafficsim.draw.graphs.GraphPath.Section<L>
- Type Parameters:
L- underlying type- Record Components:
length- Length; length of the sectionspeedLimit- Speed; speed limit on the sectionsections- List<S>; list of underlying objects
- All Implemented Interfaces:
Iterable<L>
public static record GraphPath.Section<L>(org.djunits.value.vdouble.scalar.Length length, org.djunits.value.vdouble.scalar.Speed speedLimit, List<L> sections)
extends Record
implements Iterable<L>
Class for sections.
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 TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.getSource(int series) Returns the source object.final inthashCode()Returns a hash code value for this object.iterator()org.djunits.value.vdouble.scalar.Lengthlength()Returns the value of thelengthrecord component.sections()Returns the value of thesectionsrecord component.org.djunits.value.vdouble.scalar.SpeedReturns the value of thespeedLimitrecord component.final StringtoString()Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.lang.Iterable
forEach, spliterator
-
Constructor Details
-
Section
public Section(org.djunits.value.vdouble.scalar.Length length, org.djunits.value.vdouble.scalar.Speed speedLimit, List<L> sections) Creates an instance of aSectionrecord class.- Parameters:
length- the value for thelengthrecord componentspeedLimit- the value for thespeedLimitrecord componentsections- the value for thesectionsrecord component
-
-
Method Details
-
getSource
Returns the source object.- Parameters:
series- int; number- Returns:
- S; underlying object of the series
-
iterator
-
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). -
length
public org.djunits.value.vdouble.scalar.Length length()Returns the value of thelengthrecord component.- Returns:
- the value of the
lengthrecord component
-
speedLimit
public org.djunits.value.vdouble.scalar.Speed speedLimit()Returns the value of thespeedLimitrecord component.- Returns:
- the value of the
speedLimitrecord component
-
sections
Returns the value of thesectionsrecord component.- Returns:
- the value of the
sectionsrecord component
-