org.ebay.datameta.dom.ThrowingConsumer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dom-core Show documentation
Show all versions of dom-core Show documentation
Classes needed for DataMeta DOM functionality in JVM; with Java, Scala, Clojure, JRuby and other platforms running on a JVM.
package org.ebay.datameta.dom;
/**
* To enable our lambdas run methods with an {@link Exception} thrown, even a checked one.
* @author Michael Bergens
*/
@FunctionalInterface
public interface ThrowingConsumer {
void accept(T v) throws X;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy