com.vladsch.flexmark.tree.iteration.ValueIterationConsumer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark-tree-iteration Show documentation
Show all versions of flexmark-tree-iteration Show documentation
flexmark-java library for recursive tree iteration with the filtering and recursion conditions provided by predicates
package com.vladsch.flexmark.tree.iteration;
import org.jetbrains.annotations.NotNull;
public interface ValueIterationConsumer extends IterationConsumer {
void accept(@NotNull N it, @NotNull ValueIteration iteration);
// before start of all iterations
default void beforeStart(@NotNull ValueIteration iteration) {
}
// iteration is done, before returning
default void afterEnd(@NotNull ValueIteration iteration) {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy