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

io.github.robwin.swagger2markup.utils.Consumer Maven / Gradle / Ivy

There is a newer version: 0.9.2
Show newest version
package io.github.robwin.swagger2markup.utils;

/**
 * Java 8 style Consumer functional interface
 */
public interface Consumer {

    /**
     * The function itself
     * @param t the function argument
     */
    void accept(T t);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy