Package org.codehaus.groovy.ast.tools
Class ParameterUtils
java.lang.Object
org.codehaus.groovy.ast.tools.ParameterUtils
public class ParameterUtils extends 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)
-
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
-