se.bjurr.jmib.anotations.InvocationStyle 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.
package se.bjurr.jmib.anotations;
public enum InvocationStyle {
/** Create an invoke(instance)
. */
INVOKE_AT_END,
/** Create an on(instance)
and invoke()
. */
INVOKE_WITH_ON,
/** Create an on(instance)
and invoke(instance)
. */
INVOKE_AUTO
}