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

net.zerobuilder.Getter Maven / Gradle / Ivy

There is a newer version: 1.644
Show newest version
package net.zerobuilder;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.SOURCE;

/**
 * Determines step position of the associated builder step.
 */
@Retention(SOURCE)
@Target(METHOD)
public @interface Getter {
  int value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy