-
- Type Parameters:
N- Тип вершиныE- Тип ребра/дуги
- All Superinterfaces:
Graph<N,E>
- All Known Subinterfaces:
MultipleDirectedGraph<N,E>,MultipleUndirectedGraph<N,E>
- All Known Implementing Classes:
SimpleMDGraph,SimpleMDGraphSender
public interface MultiGraph<N,E> extends Graph<N,E>
Интерфес мультиграфа- Author:
- GoCha
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Iterable<E>get(N a, N b)Возвращает ребра между вершинамиvoidset(N a, N b, Iterable<E> e)Устанавливает/Сбрасывает ребра между вершинами-
Methods inherited from interface xyz.cofe.collection.graph.Graph
add, clearAll, clearEdges, contains, edgesOf, edgesOfNodeA, edgesOfNodeB, getEdge, getEdges, getEdges, getNodes, hasEdge, remove, removeEdge, setEdge, setEdges
-
-