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

io.github.mivek.command.Supplier Maven / Gradle / Ivy

package io.github.mivek.command;

/**
 * @param  type of command to return.
 * @author mivek
 */
@FunctionalInterface public interface Supplier {

    /**
     * @param pString the string to parse.
     * @return the command able to parse the string.
     */
    T get(String pString);
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy