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

de.placeblock.betterinventories.Builder Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
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(); }