default Set<N> |
GraphAdapter.getConnectedNodes(N node,
EdgeDirection direction) |
Returns an Iterable of edges attached to a node in a given direction.
|
Iterable<? extends E> |
GraphAdapter.getEdges(N node,
EdgeDirection direction) |
Returns an Iterable of edges attached to a node in a given direction.
|
default Iterable<? extends E> |
GraphAdapter.getEdges(N node,
EdgeDirection direction,
Predicate<? super E> predicate) |
Returns an Iterable of edges attached to a node in a given direction and matching a predicate.
|
default int |
GraphAdapter.getEdgesCount(N node,
EdgeDirection direction) |
Returns the number of edges attached to a node, in one or any direction.
|
default Stream<? extends E> |
GraphAdapter.getEdgesStream(N node,
EdgeDirection direction) |
|
default boolean |
GraphAdapter.hasEdges(N node,
EdgeDirection direction) |
Returns true when there are edges attached to a node, in one or any direction.
|
boolean |
EdgeDirectionMask.isEnabled(EdgeDirection value) |
|
EdgeDirectionMask |
EdgeDirectionMask.setEnabled(EdgeDirection value,
boolean enabled) |
|