Package groovy.transform.stc
Class ThirdParam
- java.lang.Object
- 
- groovy.transform.stc.ClosureSignatureHint
- 
- groovy.transform.stc.SingleSignatureClosureHint
- 
- groovy.transform.stc.PickAnyArgumentHint
- 
- groovy.transform.stc.ThirdParam
 
 
 
 
- 
- Direct Known Subclasses:
- ThirdParam.Component
 
 public class ThirdParam extends PickAnyArgumentHint A hint used to instruct the type checker to pick the third parameter type. For example: public <T,U,V> def doWith(T first, U second, V third, @ClosureParams(ThirdParam.class) Closure c) { ... }This class has several inner classes that also helps picking generic argument types instead of the parameter type. - Since:
- 2.3.0
 
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classThirdParam.ComponentA hint used to instruct the type checker to pick the type of the component of the third parameter type, which is therefore expected to be an array, like in this example:static classThirdParam.FirstGenericTypeA hint used to instruct the type checker to pick the first generic type of the third parameter type.static classThirdParam.SecondGenericTypeA hint used to instruct the type checker to pick the second generic type of the third parameter type.static classThirdParam.ThirdGenericTypeA hint used to instruct the type checker to pick the second generic type of the third parameter type.
 - 
Constructor SummaryConstructors Constructor Description ThirdParam()
 - 
Method Summary- 
Methods inherited from class groovy.transform.stc.PickAnyArgumentHintgetParameterTypes
 - 
Methods inherited from class groovy.transform.stc.SingleSignatureClosureHintgetClosureSignatures
 - 
Methods inherited from class groovy.transform.stc.ClosureSignatureHintfindClassNode, pickGenericType, pickGenericType
 
- 
 
-