de.thksystems.util.function.CheckedConsumer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cumin Show documentation
Show all versions of cumin Show documentation
Commons for lang, crypto, xml, dom, text, csv, reflection, annotations, parsing, ...
package de.thksystems.util.function;
@FunctionalInterface
public interface CheckedConsumer {
void accept(T t) throws X;
}