default NodeStream.DescendantNodeStream<T> |
NodeStream.DescendantNodeStream.crossFindBoundaries() |
|
NodeStream.DescendantNodeStream<T> |
NodeStream.DescendantNodeStream.crossFindBoundaries(boolean cross) |
Returns a node stream that will not stop the tree traversal
when encountering a find boundary.
|
default NodeStream.DescendantNodeStream<? extends Node> |
Node.descendants() |
Returns a node stream containing all the descendants
of this node.
|
default <R extends Node> NodeStream.DescendantNodeStream<R> |
Node.descendants(Class<? extends R> rClass) |
|
NodeStream.DescendantNodeStream<Node> |
NodeStream.descendants() |
Returns a node stream containing all the strict descendants of the nodes
contained in this stream.
|
<R extends Node> NodeStream.DescendantNodeStream<R> |
NodeStream.descendants(Class<? extends R> rClass) |
Returns the descendant stream of each node
in this stream, filtered by the given node type.
|
default NodeStream.DescendantNodeStream<? extends Node> |
Node.descendantsOrSelf() |
Returns a node stream containing this node, then all its
descendants.
|
NodeStream.DescendantNodeStream<Node> |
NodeStream.descendantsOrSelf() |
Returns a node stream containing the nodes contained in this stream and their descendants.
|