Uses of Class
org.openstreetmap.josm.data.osm.IWaySegment
-
Packages that use IWaySegment Package Description org.openstreetmap.josm.data.osm Provides the classes for OSM data:Primitives
:Node
,Way
,Relation
Users
Tags
Changesets
Utilities classes -
-
Uses of IWaySegment in org.openstreetmap.josm.data.osm
Subclasses of IWaySegment in org.openstreetmap.josm.data.osm Modifier and Type Class Description class
WaySegment
A segment consisting of two consecutive nodes out of a way.Methods in org.openstreetmap.josm.data.osm that return IWaySegment Modifier and Type Method Description static <N extends INode,W extends IWay<N>>
IWaySegment<N,W>IWaySegment. forNodePair(W way, N first, N second)
Determines and returns the way segment for the given way and node pair.Methods in org.openstreetmap.josm.data.osm with parameters of type IWaySegment Modifier and Type Method Description int
IWaySegment. compareTo(IWaySegment o)
boolean
IWaySegment. intersects(IWaySegment<?,?> s2)
Checks whether this segment crosses other segmentboolean
IWaySegment. isSimilar(IWaySegment<?,?> s2)
Checks whether this segment and another way segment share the same points
-