JavaScript is disabled on your browser.
Skip navigation links
Overview
Package
Class
Tree
Index
Help
Summary:
Nested
Field
Constr
Method
Detail:
Field
Constr
Method
Summary:
Nested |
Field |
Constr |
Method
Detail:
Field |
Constr |
Method
SEARCH
Package
graph
Interface Vertex<EdgeType extends
Edge
<?>>
All Known Implementing Classes:
MazeGraph.MazeVertex
public interface
Vertex<EdgeType extends
Edge
<?>>
Represents a vertex in a graph whose edges have type `EdgeType`.
Method Summary
All Methods
Instance Methods
Abstract Methods
Modifier and Type
Method
Description
Iterable
<
EdgeType
>
outgoingEdges
()
Return an object supporting iteration over all the edges connecting this vertex to another vertex in the graph.
Method Details
outgoingEdges
Iterable
<
EdgeType
>
outgoingEdges
()
Return an object supporting iteration over all the edges connecting this vertex to another vertex in the graph. This vertex serves as the "source" vertex for each such edge.