Uses of Interface
com.vladsch.flexmark.util.collection.iteration.ReversiblePeekingIterator
-
Packages that use ReversiblePeekingIterator Package Description com.vladsch.flexmark.util.ast com.vladsch.flexmark.util.collection.iteration -
-
Uses of ReversiblePeekingIterator in com.vladsch.flexmark.util.ast
Classes in com.vladsch.flexmark.util.ast that implement ReversiblePeekingIterator Modifier and Type Class Description class
DescendantNodeIterator
class
NodeIterator
Fields in com.vladsch.flexmark.util.ast declared as ReversiblePeekingIterator Modifier and Type Field Description static ReversiblePeekingIterator<Node>
NodeIterator. EMPTY
private @NotNull ReversiblePeekingIterator<Node>
DescendantNodeIterator. iterator
Fields in com.vladsch.flexmark.util.ast with type parameters of type ReversiblePeekingIterator Modifier and Type Field Description private @Nullable java.util.Stack<ReversiblePeekingIterator<Node>>
DescendantNodeIterator. iteratorStack
Methods in com.vladsch.flexmark.util.ast that return ReversiblePeekingIterator Modifier and Type Method Description @NotNull ReversiblePeekingIterator<Node>
Node. getChildIterator()
@NotNull ReversiblePeekingIterator<Node>
Node. getReversedChildIterator()
@NotNull ReversiblePeekingIterator<Node>
DescendantNodeIterable. iterator()
@NotNull ReversiblePeekingIterator<Node>
NodeIterable. iterator()
@NotNull ReversiblePeekingIterator<Node>
DescendantNodeIterable. reversedIterator()
@NotNull ReversiblePeekingIterator<Node>
NodeIterable. reversedIterator()
Constructors in com.vladsch.flexmark.util.ast with parameters of type ReversiblePeekingIterator Constructor Description DescendantNodeIterator(@NotNull ReversiblePeekingIterator<Node> iterator)
iterate nodes, with descendants, depth first until all are done -
Uses of ReversiblePeekingIterator in com.vladsch.flexmark.util.collection.iteration
Methods in com.vladsch.flexmark.util.collection.iteration that return ReversiblePeekingIterator Modifier and Type Method Description @NotNull ReversiblePeekingIterator<E>
ReversiblePeekingIterable. iterator()
@NotNull ReversiblePeekingIterator<E>
ReversiblePeekingIterable. reversedIterator()
-