
com.fluentinterface.builder.Builder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluent-interface-proxy Show documentation
Show all versions of fluent-interface-proxy Show documentation
A dynamic proxy that implements builder interfaces transparently.
The newest version!
package com.fluentinterface.builder;
public interface Builder {
/**
* Creates an object instance of the target class being built from the state that was set using the builder's methods.
*
* @param constructorArgs (optional) when specified, a matching constructor will be looked up on the target class and
* this constructor (if found) will be used to instantiate your object.
* @return an object instance initialized as the builder was used.
*/
T build(Object... constructorArgs);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy