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

eu.xenit.apix.utils.java8.Consumer Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
package eu.xenit.apix.utils.java8;

/**
 * Copy of the java 8 comsumer interface
 */
public interface Consumer {

    /**
     * Performs this operation on the given argument.
     *
     * @param t the input argument
     */
    void accept(T t);


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy