Uses of Class
cdc.graphs.EdgeDirection
-
-
Uses of EdgeDirection in cdc.graphs
Methods in cdc.graphs that return EdgeDirection Modifier and Type Method Description EdgeDirectionEdgeDirection. opposite()static EdgeDirectionEdgeDirection. valueOf(String name)Returns the enum constant of this type with the specified name.static EdgeDirection[]EdgeDirection. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in cdc.graphs with parameters of type EdgeDirection Modifier and Type Method Description default Set<N>GraphAdapter. getConnectedNodes(N node, EdgeDirection 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)default intGraphAdapter. 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 booleanGraphAdapter. hasEdges(N node, EdgeDirection direction)Returnstruewhen there are edges attached to a node, in one or any direction.booleanEdgeDirectionMask. isEnabled(EdgeDirection value)EdgeDirectionMaskEdgeDirectionMask. setEnabled(EdgeDirection value, boolean enabled)
-