Class JavassistMethodDeclaration

  • All Implemented Interfaces:
    com.github.javaparser.resolution.declarations.AssociableToAST, com.github.javaparser.resolution.declarations.HasAccessSpecifier, com.github.javaparser.resolution.declarations.ResolvedDeclaration, com.github.javaparser.resolution.declarations.ResolvedMethodDeclaration, com.github.javaparser.resolution.declarations.ResolvedMethodLikeDeclaration, com.github.javaparser.resolution.declarations.ResolvedTypeParametrizable, TypeVariableResolutionCapability

    public class JavassistMethodDeclaration
    extends java.lang.Object
    implements com.github.javaparser.resolution.declarations.ResolvedMethodDeclaration, TypeVariableResolutionCapability
    Author:
    Federico Tomassetti
    • Constructor Summary

      Constructors 
      Constructor Description
      JavassistMethodDeclaration​(javassist.CtMethod ctMethod, com.github.javaparser.resolution.TypeSolver typeSolver)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      com.github.javaparser.ast.AccessSpecifier accessSpecifier()  
      com.github.javaparser.resolution.declarations.ResolvedReferenceTypeDeclaration declaringType()  
      java.lang.String getName()  
      int getNumberOfParams()  
      int getNumberOfSpecifiedExceptions()  
      com.github.javaparser.resolution.declarations.ResolvedParameterDeclaration getParam​(int i)  
      com.github.javaparser.resolution.types.ResolvedType getReturnType()  
      com.github.javaparser.resolution.types.ResolvedType getSpecifiedException​(int index)  
      java.util.List<com.github.javaparser.resolution.declarations.ResolvedTypeParameterDeclaration> getTypeParameters()  
      com.github.javaparser.resolution.MethodUsage getUsage​(com.github.javaparser.ast.Node node)  
      boolean isAbstract()  
      boolean isDefaultMethod()  
      boolean isField()  
      boolean isParameter()  
      boolean isStatic()  
      boolean isType()  
      com.github.javaparser.resolution.MethodUsage resolveTypeVariables​(com.github.javaparser.resolution.Context context, java.util.List<com.github.javaparser.resolution.types.ResolvedType> parameterTypes)  
      java.lang.String toDescriptor()  
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface com.github.javaparser.resolution.declarations.AssociableToAST

        toAst, toAst
      • Methods inherited from interface com.github.javaparser.resolution.declarations.ResolvedDeclaration

        asEnumConstant, asField, asMethod, asParameter, asType, asTypePattern, hasName, isArrayLength, isEnumConstant, isMethod, isTypePattern, isVariable
      • Methods inherited from interface com.github.javaparser.resolution.declarations.ResolvedMethodDeclaration

        isReturnTypeSubstituable
      • Methods inherited from interface com.github.javaparser.resolution.declarations.ResolvedMethodLikeDeclaration

        findTypeParameter, formalParameterTypes, getClassName, getLastParam, getPackageName, getQualifiedName, getQualifiedSignature, getSignature, getSpecifiedExceptions, hasVariadicParameter
      • Methods inherited from interface com.github.javaparser.resolution.declarations.ResolvedTypeParametrizable

        isGeneric
    • Constructor Detail

      • JavassistMethodDeclaration

        public JavassistMethodDeclaration​(javassist.CtMethod ctMethod,
                                          com.github.javaparser.resolution.TypeSolver typeSolver)
    • Method Detail

      • isDefaultMethod

        public boolean isDefaultMethod()
        Specified by:
        isDefaultMethod in interface com.github.javaparser.resolution.declarations.ResolvedMethodDeclaration
      • isStatic

        public boolean isStatic()
        Specified by:
        isStatic in interface com.github.javaparser.resolution.declarations.ResolvedMethodDeclaration
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • getName

        public java.lang.String getName()
        Specified by:
        getName in interface com.github.javaparser.resolution.declarations.ResolvedDeclaration
      • isField

        public boolean isField()
        Specified by:
        isField in interface com.github.javaparser.resolution.declarations.ResolvedDeclaration
      • isParameter

        public boolean isParameter()
        Specified by:
        isParameter in interface com.github.javaparser.resolution.declarations.ResolvedDeclaration
      • isType

        public boolean isType()
        Specified by:
        isType in interface com.github.javaparser.resolution.declarations.ResolvedDeclaration
      • declaringType

        public com.github.javaparser.resolution.declarations.ResolvedReferenceTypeDeclaration declaringType()
        Specified by:
        declaringType in interface com.github.javaparser.resolution.declarations.ResolvedMethodLikeDeclaration
      • getReturnType

        public com.github.javaparser.resolution.types.ResolvedType getReturnType()
        Specified by:
        getReturnType in interface com.github.javaparser.resolution.declarations.ResolvedMethodDeclaration
      • getNumberOfParams

        public int getNumberOfParams()
        Specified by:
        getNumberOfParams in interface com.github.javaparser.resolution.declarations.ResolvedMethodLikeDeclaration
      • getParam

        public com.github.javaparser.resolution.declarations.ResolvedParameterDeclaration getParam​(int i)
        Specified by:
        getParam in interface com.github.javaparser.resolution.declarations.ResolvedMethodLikeDeclaration
      • getUsage

        public com.github.javaparser.resolution.MethodUsage getUsage​(com.github.javaparser.ast.Node node)
      • resolveTypeVariables

        public com.github.javaparser.resolution.MethodUsage resolveTypeVariables​(com.github.javaparser.resolution.Context context,
                                                                                 java.util.List<com.github.javaparser.resolution.types.ResolvedType> parameterTypes)
        Specified by:
        resolveTypeVariables in interface TypeVariableResolutionCapability
      • isAbstract

        public boolean isAbstract()
        Specified by:
        isAbstract in interface com.github.javaparser.resolution.declarations.ResolvedMethodDeclaration
      • getTypeParameters

        public java.util.List<com.github.javaparser.resolution.declarations.ResolvedTypeParameterDeclaration> getTypeParameters()
        Specified by:
        getTypeParameters in interface com.github.javaparser.resolution.declarations.ResolvedTypeParametrizable
      • accessSpecifier

        public com.github.javaparser.ast.AccessSpecifier accessSpecifier()
        Specified by:
        accessSpecifier in interface com.github.javaparser.resolution.declarations.HasAccessSpecifier
      • getNumberOfSpecifiedExceptions

        public int getNumberOfSpecifiedExceptions()
        Specified by:
        getNumberOfSpecifiedExceptions in interface com.github.javaparser.resolution.declarations.ResolvedMethodLikeDeclaration
      • getSpecifiedException

        public com.github.javaparser.resolution.types.ResolvedType getSpecifiedException​(int index)
        Specified by:
        getSpecifiedException in interface com.github.javaparser.resolution.declarations.ResolvedMethodLikeDeclaration
      • toDescriptor

        public java.lang.String toDescriptor()
        Specified by:
        toDescriptor in interface com.github.javaparser.resolution.declarations.ResolvedMethodDeclaration