Package groovy.transform
Annotation Type NamedParam
@Retention(RUNTIME) @Target(PARAMETER) @Repeatable(NamedParams.class) public @interface NamedParam
Marker interface used to indicate that the name of the annotated parameter
 (or specified optional name) is a valid key name when using named arguments
 and that the parameter type is applicable for type checking purposes.
- Since:
- 2.5.0
- 
Optional Element Summary
- 
Element Details- 
valuejava.lang.String value- Default:
- "<DummyUndefinedMarkerString-DoNotUse>"
 
- 
typejava.lang.Class type- Default:
- java.lang.Object.class
 
- 
requiredboolean required- Default:
- false
 
 
-