dev.jorel.commandapi.ChainableBuilder Maven / Gradle / Ivy
package dev.jorel.commandapi;
/**
*
* @param The class extending this class, used as the return type for chain calls
*/
public interface ChainableBuilder {
/**
* Returns the instance of this class with the class Impl. Used for chaining builder methods.
*/
Impl instance();
}