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

com.github.dmgcodevil.jmspy.functional.Consumer Maven / Gradle / Ivy

package com.github.dmgcodevil.jmspy.functional;

/**
 * Functional interface to be used in methods such as forEach.
 *
 * @author dmgcodevil
 */
public interface Consumer {
    /**
     * Consumes an object of  type to apply any actions.
     *
     * @param input the object of  type
     */
    void consume(T input);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy