Uses of Interface
com.vladsch.flexmark.tree.iteration.ValueIterationConsumer
-
Packages that use ValueIterationConsumer Package Description com.vladsch.flexmark.tree.iteration -
-
Uses of ValueIterationConsumer in com.vladsch.flexmark.tree.iteration
Classes in com.vladsch.flexmark.tree.iteration that implement ValueIterationConsumer Modifier and Type Class Description private static class
ValueIterationAdapterImpl.MyValueIterationConsumer<P,T,R>
class
VoidToValueIConsumerAdapter<N,R>
Fields in com.vladsch.flexmark.tree.iteration declared as ValueIterationConsumer Modifier and Type Field Description private ValueIterationConsumer<? super T,R>
ValueIterationAdapterImpl.MyValueIterationConsumer. myConsumer
Methods in com.vladsch.flexmark.tree.iteration that return ValueIterationConsumer Modifier and Type Method Description <R> @NotNull ValueIterationConsumer<? super P,R>
ValueIterationAdapterImpl.ChainedConsumerAdapter. getConsumer(ValueIterationConsumer<? super V,R> valueConsumer)
<R> @NotNull ValueIterationConsumer<? super P,R>
ValueIterationAdapterImpl.ChainedConsumerAdapter. getConsumer(VoidIterationConsumer<? super V> voidConsumer)
<R> @NotNull ValueIterationConsumer<? super P,R>
ValueIterationAdapterImpl.ConsumerAdapter. getConsumer(ValueIterationConsumer<? super T,R> valueConsumer)
<R> @NotNull ValueIterationConsumer<? super P,R>
ValueIterationAdapterImpl.ConsumerAdapter. getConsumer(VoidIterationConsumer<? super T> voidConsumer)
<R> @NotNull ValueIterationConsumer<? super P,R>
ValueIterationConsumerAdapter. getConsumer(ValueIterationConsumer<? super T,R> valueConsumer)
<R> @NotNull ValueIterationConsumer<? super P,R>
ValueIterationConsumerAdapter. getConsumer(VoidIterationConsumer<? super T> voidConsumer)
Methods in com.vladsch.flexmark.tree.iteration with parameters of type ValueIterationConsumer Modifier and Type Method Description <R> R
MappedIterator. doLoop(R defaultValue, @NotNull ValueIterationConsumer<? super T,R> consumer)
<T,R>
RTreeIterator. doLoop(N element, R defaultValue, @NotNull ValueIterationAdapter<? super N,T> adapter, @NotNull ValueIterationConsumer<? super T,R> consumer)
<R> R
TreeIterator. doLoop(N element, R defaultValue, @NotNull ValueIterationConsumer<? super N,R> consumer)
<R> @NotNull ValueIterationConsumer<? super P,R>
ValueIterationAdapterImpl.ChainedConsumerAdapter. getConsumer(ValueIterationConsumer<? super V,R> valueConsumer)
<R> @NotNull ValueIterationConsumer<? super P,R>
ValueIterationAdapterImpl.ConsumerAdapter. getConsumer(ValueIterationConsumer<? super T,R> valueConsumer)
<R> @NotNull ValueIterationConsumer<? super P,R>
ValueIterationConsumerAdapter. getConsumer(ValueIterationConsumer<? super T,R> valueConsumer)
void
IteratorInstance. iterate(@NotNull ValueIterationConsumer<? super N,R> consumer)
<T,R>
ValueIteration<R>TreeIterator. iterate(N element, R defaultValue, @NotNull ValueIterationAdapter<? super N,T> adapter, @NotNull ValueIterationConsumer<? super T,R> consumer)
<R> ValueIteration<R>
TreeIterator. iterate(N element, R defaultValue, @NotNull ValueIterationConsumer<? super N,R> consumer)
Constructors in com.vladsch.flexmark.tree.iteration with parameters of type ValueIterationConsumer Constructor Description MyValueIterationConsumer(@NotNull java.util.function.Function<? super P,? extends T> function, @Nullable ValueIterationFilter<? super T> filter, ValueIterationConsumer<? super T,R> consumer)
-