add method

void add(
  1. EdgeEnd e
)

Adds a node for the start point of this EdgeEnd (if one does not already exist in this map). Adds the EdgeEnd to the (possibly new) node.

Implementation

void add(EdgeEnd e) {
  Coordinate p = e.getCoordinate()!;
  Node n = addNodeFromCoordinate(p);
  n.add(e);
}