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
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.getSource
(int series) Returns the source object.final int
hashCode()
Returns a hash code value for this object.iterator()
org.djunits.value.vdouble.scalar.Length
length()
Returns the value of thelength
record component.sections()
Returns the value of thesections
record component.org.djunits.value.vdouble.scalar.Speed
Returns the value of thespeedLimit
record component.final String
toString()
Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods 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 aSection
record class.- Parameters:
length
- the value for thelength
record componentspeedLimit
- the value for thespeedLimit
record componentsections
- the value for thesections
record 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 thelength
record component.- Returns:
- the value of the
length
record component
-
speedLimit
public org.djunits.value.vdouble.scalar.Speed speedLimit()Returns the value of thespeedLimit
record component.- Returns:
- the value of the
speedLimit
record component
-
sections
Returns the value of thesections
record component.- Returns:
- the value of the
sections
record component
-