Package org.codehaus.groovy.ast.tools
Class ParameterUtils
java.lang.Object
org.codehaus.groovy.ast.tools.ParameterUtils
public class ParameterUtils
extends java.lang.Object
- 
Constructor SummaryConstructors Constructor Description ParameterUtils()
- 
Method SummaryModifier and Type Method Description static booleanparametersCompatible(Parameter[] source, Parameter[] target)Checks compatibility of parameter arrays.static booleanparametersEqual(Parameter[] a, Parameter[] b)static booleanparametersEqualWithWrapperType(Parameter[] a, Parameter[] b)Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- 
Constructor Details- 
ParameterUtilspublic ParameterUtils()
 
- 
- 
Method Details- 
parametersEqual
- 
parametersEqualWithWrapperType
- 
parametersCompatibleChecks compatibility of parameter arrays. Each parameter should match the following condition:sourceType.isAssignableTo(targetType)- Since:
- 3.0.0
 
 
-