Package org.apache.groovy.ast.tools
Class MethodNodeUtils
- java.lang.Object
- 
- org.apache.groovy.ast.tools.MethodNodeUtils
 
- 
 public class MethodNodeUtils extends java.lang.ObjectUtility class for working with MethodNodes
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.StringgetPropertyName(MethodNode mNode)For a method node potentially representing a property, returns the name of the property.static java.lang.StringmethodDescriptor(MethodNode mNode)Return the method node's descriptor which includes its return type, name and parameter types without generics.static java.lang.StringmethodDescriptorWithoutReturnType(MethodNode mNode)Return the method node's descriptor including its name and parameter types without generics.
 
- 
- 
- 
Method Detail- 
methodDescriptorWithoutReturnTypepublic static java.lang.String methodDescriptorWithoutReturnType(MethodNode mNode) Return the method node's descriptor including its name and parameter types without generics.- Parameters:
- mNode- the method node
- Returns:
- the method node's abbreviated descriptor excluding the return type
 
 - 
methodDescriptorpublic static java.lang.String methodDescriptor(MethodNode mNode) Return the method node's descriptor which includes its return type, name and parameter types without generics.- Parameters:
- mNode- the method node
- Returns:
- the method node's descriptor
 
 - 
getPropertyNamepublic static java.lang.String getPropertyName(MethodNode mNode) For a method node potentially representing a property, returns the name of the property.- Parameters:
- mNode- a MethodNode
- Returns:
- the property name without the get/set/is prefix if a property or null
 
 
- 
 
-