@Documented
@Target(value=PARAMETER)
@Retention(value=RUNTIME)
public @interface Parameter
NOTE: Allowed types are long, int, short, byte, float, double, boolean, String and their boxed equivalents.
Any other types will result in a IllegalArgumentException thrown during method generation.
Modifier and Type | Required Element and Description |
---|---|
java.lang.String |
value
The API parameter's name.
|