![JAR search and dependency download from the Maven repository](/logo.png)
de.placeblock.betterinventories.Builder Maven / Gradle / Ivy
package de.placeblock.betterinventories;
/**
* Interface for all sorts of builders
* @param The Builder that implements this one
* @param The Result that is produced
*/
public abstract class Builder, P> {
/**
* Returns the Builder instance itself
* @return the Builder instance itself
*/
protected abstract B self();
/**
* Builds the instance
* @return The new instance
*/
public abstract P build();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy