All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ebay.datameta.dom.ThrowingConsumer Maven / Gradle / Ivy

Go to download

Classes needed for DataMeta DOM functionality in JVM; with Java, Scala, Clojure, JRuby and other platforms running on a JVM.

The newest version!
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 - 2025 Weber Informatics LLC | Privacy Policy