Package groovy.transform.stc
Class FirstParam.ThirdGenericType
java.lang.Object
groovy.transform.stc.ClosureSignatureHint
groovy.transform.stc.SingleSignatureClosureHint
groovy.transform.stc.PickAnyArgumentHint
groovy.transform.stc.FirstParam.ThirdGenericType
- Enclosing class:
- FirstParam
A hint used to instruct the type checker to pick the third generic type of the first parameter type. For example:
void <T,U,V> doWithElements(Triple<T,U,V> src, @ClosureParams(FirstParam.ThirdGenericType.class) Closure c) { src.each { c.call(it) } }
- Since:
- 2.3.0
-
Constructor Summary
-
Method Summary
Methods inherited from class groovy.transform.stc.PickAnyArgumentHint
getParameterTypes
Methods inherited from class groovy.transform.stc.SingleSignatureClosureHint
getClosureSignatures
Methods inherited from class groovy.transform.stc.ClosureSignatureHint
findClassNode, pickGenericType, pickGenericType
-
Constructor Details
-
ThirdGenericType
public ThirdGenericType()
-