Java com.google.common.graph MutableNetwork fields, constructors, methods, implement or subclass

Example usage for Java com.google.common.graph MutableNetwork fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.common.graph MutableNetwork.

The text is from its open source code.

Method

booleanaddEdge(E edge, N node1, N node2)
Adds edge to this graph, connecting node1 to node2 (optional operation).
booleanaddNode(N node)
Adds node to this graph (optional operation).
booleanremoveEdge(Object edge)
Removes edge from this graph, if it is present (optional operation).
booleanremoveNode(Object node)
Removes node from this graph, if it is present (optional operation).