Uses of Class
gistoolkit.features.MultiLineString

Packages that use MultiLineString
gistoolkit.datasources   
gistoolkit.datasources.shapefile   
gistoolkit.features   
gistoolkit.features.jtsutils   
gistoolkit.projection   
 

Uses of MultiLineString in gistoolkit.datasources
 

Methods in gistoolkit.datasources that return MultiLineString
static MultiLineString WKTFactory.parseMultiLineString(java.lang.String inWKT)
          Convert the Well Known Text (WKT) representaion of a multi line string into a MultiLineString.
 

Uses of MultiLineString in gistoolkit.datasources.shapefile
 

Subclasses of MultiLineString in gistoolkit.datasources.shapefile
 class MultiLineStringM
          Just like a MultiLineString, but with the addition of a measure to each node.
 class MultiLineStringZ
          Just like a MultiLineStringM, but with the addition of a z coordinate to each node.
 

Uses of MultiLineString in gistoolkit.features
 

Methods in gistoolkit.features with parameters of type MultiLineString
 boolean LineString.containsMultiLine(MultiLineString inMultiLineString)
          For line strings, since the shape is a line, it can only contain points, and other line strings.
 boolean LineString.intersectsMultiLineString(MultiLineString inMultiLineString)
          A LineString intersects a MultiLineString if any of the constituent LineStrings intersect this LineString.
 boolean LinearRing.containsMultiLine(MultiLineString inMultiLineString)
          For linear rings, since the shape is representing a simple polygon, if the shape is contained within the interior of the ring, then it is said to be within the simple polygon.
 boolean MultiLineString.intersectsMultiLineString(MultiLineString inMultiLineString)
          A MultiLineString will intersect another MultiLineString if any of the constituent LinesStrings within the MultiLineStrings intersect.
 boolean MultiPoint.intersectsMultiLineString(MultiLineString inMultiLineString)
          A MultiPoint will intersect a MultiLineString if any one of the points intersects one of the constituent line strings.
 boolean Point.intersectsMultiLineString(MultiLineString inMultiLineString)
          A point intersects a MultiLineString if it intersects any one of the constituent LineStrings.
 

Uses of MultiLineString in gistoolkit.features.jtsutils
 

Methods in gistoolkit.features.jtsutils that return MultiLineString
 MultiLineString JTSConverter.convertMultiLineString(com.vividsolutions.jts.geom.MultiLineString inMultiLineString)
          Converts a JTS MultiLineString to a GISToolkit MultiLineString.
 

Methods in gistoolkit.features.jtsutils with parameters of type MultiLineString
 com.vividsolutions.jts.geom.MultiLineString JTSConverter.convertMultiLineString(MultiLineString inMultiLineString)
          Converts a GISToolkit MultiLineString to a JTS MultiLineString.
 

Uses of MultiLineString in gistoolkit.projection
 

Methods in gistoolkit.projection with parameters of type MultiLineString
static void ShapeProjector.projectForwardMultiLineString(Projection inProjection, MultiLineString inMultiLineString)
          Handles projection of MultiLineStrings.
static void ShapeProjector.projectBackwardMultiLineString(Projection inProjection, MultiLineString inMultiLineString)
          Handles reverse projection of MultiLineStrings.