@return a set of all nodes that have degree 1. These nodes are often refered to as 'tips'.
()
| 281 | * These nodes are often refered to as 'tips'. |
| 282 | */ |
| 283 | public Set<Node> getExternalNodes() { |
| 284 | return new LinkedHashSet<Node>(externalNodes.values()); |
| 285 | } |
| 286 | |
| 287 | /** |
| 288 | * @return a set of all nodes that have degree 2 or more. |
no outgoing calls
no test coverage detected