Class OTSRoadNetworkUtils
- java.lang.Object
-
- org.opentrafficsim.road.network.factory.OTSRoadNetworkUtils
-
public final class OTSRoadNetworkUtils extends Object
Copyright (c) 2013-2020 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
$LastChangedDate: 2015-07-24 02:58:59 +0200 (Fri, 24 Jul 2015) $, @version $Revision: 1147 $, by $Author: averbraeck $, initial version Aug 28, 2016
BSD-style license. See OpenTrafficSim License.- Author:
- Alexander Verbraeck, Peter Knoppers
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OTSRoadNetwork
copy(OTSRoadNetwork network)
Make a copy of the network, without GTUs and listeners.static String
toXml(OTSRoadNetwork network)
Create an xml-version of the network.static void
toXml(OTSRoadNetwork network, OutputStream out)
Create an xml-version of the network.static void
toXml(OTSRoadNetwork network, Writer writer)
Create an xml-version of the network.
-
-
-
Method Detail
-
copy
public static OTSRoadNetwork copy(OTSRoadNetwork network)
Make a copy of the network, without GTUs and listeners.- Parameters:
network
- OTSRoadNetwork; the network to copy- Returns:
- a copy of the network
-
toXml
public static String toXml(OTSRoadNetwork network)
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
public static void toXml(OTSRoadNetwork network, OutputStream out)
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
public static void toXml(OTSRoadNetwork network, Writer writer)
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
-
-