Class OTSRoadNetworkUtils
java.lang.Object
org.opentrafficsim.road.network.factory.OTSRoadNetworkUtils
public final class OTSRoadNetworkUtils
extends java.lang.Object
Copyright (c) 2013-2020 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
-
Method Summary
Modifier and Type Method Description static OTSRoadNetwork
copy(OTSRoadNetwork network)
Make a copy of the network, without GTUs and listeners.static java.lang.String
toXml(OTSRoadNetwork network)
Create an xml-version of the network.static void
toXml(OTSRoadNetwork network, java.io.OutputStream out)
Create an xml-version of the network.static void
toXml(OTSRoadNetwork network, java.io.Writer writer)
Create an xml-version of the network.
-
Method Details
-
copy
Make a copy of the network, without GTUs and listeners.- Parameters:
network
- OTSRoadNetwork; the network to copy- Returns:
- a copy of the network
-
toXml
Create an xml-version of the network.- Parameters:
network
- OTSRoadNetwork; the network to create an xml-version from- Returns:
- an xml-string with the network
-
toXml
Create an xml-version of the network.- Parameters:
network
- OTSRoadNetwork; the network to create an xml-version fromout
- OutputStream; the stream to write the xml-string with the network to
-
toXml
Create an xml-version of the network.- Parameters:
network
- OTSRoadNetwork; the network to create an xml-version fromwriter
- Writer; the writer to write the xml-string with the network to
-