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);
}