se.bjurr.jmib.anotations.BuilderStyle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-method-invocation-builder-annotations Show documentation
Show all versions of java-method-invocation-builder-annotations Show documentation
Generates builders for invoking methods on instantiated objects.
The newest version!
package se.bjurr.jmib.anotations;
public enum BuilderStyle {
/** Create an invoke(instance)
. */
SUPPLY_INSTANCE_AS_INVOKE_PARAMETER,
/** Create an on(instance)
and invoke()
. */
SUPPLY_INSTANCE_WITH_ON_METHOD,
/** Create an instance parameter in the constructor. */
SUPPLY_INSTANCE_IN_CONSTRUCTOR
}