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 Summary
Constructors Constructor Description ParameterUtils()
-
Method Summary
Modifier and Type Method Description static boolean
parametersCompatible(Parameter[] source, Parameter[] target)
Checks compatibility of parameter arrays.static boolean
parametersEqual(Parameter[] a, Parameter[] b)
static boolean
parametersEqualWithWrapperType(Parameter[] a, Parameter[] b)
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
ParameterUtils
public ParameterUtils()
-
-
Method Details
-
parametersEqual
-
parametersEqualWithWrapperType
-
parametersCompatible
Checks compatibility of parameter arrays. Each parameter should match the following condition:sourceType.isAssignableTo(targetType)
- Since:
- 3.0.0
-