![JAR search and dependency download from the Maven repository](/logo.png)
se.bjurr.jmib.anotations.GenerateMethodInvocationBuilder 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;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.CLASS;
import static se.bjurr.jmib.anotations.InvocationStyle.INVOKE_AUTO;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
@Retention(CLASS)
@Target({TYPE})
public @interface GenerateMethodInvocationBuilder {
InvocationStyle style() default INVOKE_AUTO;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy