Uses of Interface
com.vladsch.flexmark.tree.iteration.IterationConditions
-
-
Uses of IterationConditions in com.vladsch.flexmark.tree.iteration
Classes in com.vladsch.flexmark.tree.iteration that implement IterationConditions Modifier and Type Class Description classFixedIterationConditions<N>Methods in com.vladsch.flexmark.tree.iteration that return IterationConditions Modifier and Type Method Description default @NotNull IterationConditions<N>IterationConditions. getAborted()@NotNull IterationConditions<N>TreeIterator. getConstraints()@NotNull IterationConditions<N>FixedIterationConditions. getReversed()default @NotNull IterationConditions<N>IterationConditions. getReversed()Methods in com.vladsch.flexmark.tree.iteration with parameters of type IterationConditions Modifier and Type Method Description static <B,T>
FixedIterationConditions<B>FixedIterationConditions. mapTtoB(IterationConditions<T> constraints, Function<? super B,T> adaptBtoT, Function<? super T,B> adaptTtoB)@NotNull TreeIterator<N>TreeIterator. modifiedCopy(@NotNull IterationConditions<N> constraints, @NotNull Predicate<? super N> filter, @NotNull Predicate<? super N> recursion)static NodeIterator<com.vladsch.flexmark.util.ast.Node>NodeIterator. of(@NotNull com.vladsch.flexmark.util.ast.Node element, @NotNull IterationConditions<com.vladsch.flexmark.util.ast.Node> constraints)static NodeIterator<com.vladsch.flexmark.util.ast.Node>NodeIterator. of(@NotNull com.vladsch.flexmark.util.ast.Node element, @NotNull IterationConditions<com.vladsch.flexmark.util.ast.Node> constraints, @NotNull Predicate<? super com.vladsch.flexmark.util.ast.Node> filter)static NodeIterator<com.vladsch.flexmark.util.ast.Node>NodeIterator. of(@NotNull com.vladsch.flexmark.util.ast.Node element, @NotNull IterationConditions<com.vladsch.flexmark.util.ast.Node> constraints, @NotNull Predicate<? super com.vladsch.flexmark.util.ast.Node> filter, @NotNull Predicate<? super com.vladsch.flexmark.util.ast.Node> recursion)static <N> @NotNull TreeIterator<N>TreeIterator. of(@NotNull IterationConditions<N> constraints)static <N> @NotNull TreeIterator<N>TreeIterator. of(@NotNull IterationConditions<N> constraints, @NotNull Predicate<? super N> filter)static <N> @NotNull TreeIterator<N>TreeIterator. of(@NotNull IterationConditions<N> constraints, @NotNull Predicate<? super N> filter, @NotNull Predicate<? super N> recursion)Constructors in com.vladsch.flexmark.tree.iteration with parameters of type IterationConditions Constructor Description IteratorInstance(@NotNull IterationConditions<N> iterationConditions, @NotNull Predicate<? super N> filterPredicate, @NotNull Predicate<? super N> recursionPredicate, N element)IteratorInstance(@NotNull IterationConditions<N> iterationConditions, @NotNull Predicate<? super N> filterPredicate, @NotNull Predicate<? super N> recursionPredicate, N element, @NotNull Object defaultValue)TreeIterator(IterationConditions<N> constraints)TreeIterator(IterationConditions<N> constraints, Predicate<? super N> filter)TreeIterator(IterationConditions<N> constraints, Predicate<? super N> filter, Predicate<? super N> recursion)
-