tools.bestquality.function.CheckedConsumer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ci-maven-plugin Show documentation
Show all versions of ci-maven-plugin Show documentation
Maven plugin for building and releasing from CI pipelines
package tools.bestquality.function;
@FunctionalInterface
public interface CheckedConsumer {
void accept(T t)
throws E;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy