Class JavaParserAnnotationMemberDeclaration
- java.lang.Object
-
- com.github.javaparser.symbolsolver.javaparsermodel.declarations.JavaParserAnnotationMemberDeclaration
-
- All Implemented Interfaces:
ResolvedAnnotationMemberDeclaration
,ResolvedDeclaration
,ResolvedValueDeclaration
public class JavaParserAnnotationMemberDeclaration extends Object implements ResolvedAnnotationMemberDeclaration
- Author:
- Federico Tomassetti
-
-
Constructor Summary
Constructors Constructor Description JavaParserAnnotationMemberDeclaration(AnnotationMemberDeclaration wrappedNode, TypeSolver typeSolver)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Expression
getDefaultValue()
String
getName()
ResolvedType
getType()
AnnotationMemberDeclaration
getWrappedNode()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.github.javaparser.resolution.declarations.ResolvedDeclaration
asEnumConstant, asField, asMethod, asParameter, asType, hasName, isEnumConstant, isField, isMethod, isParameter, isType, isVariable
-
-
-
-
Constructor Detail
-
JavaParserAnnotationMemberDeclaration
public JavaParserAnnotationMemberDeclaration(AnnotationMemberDeclaration wrappedNode, TypeSolver typeSolver)
-
-
Method Detail
-
getWrappedNode
public AnnotationMemberDeclaration getWrappedNode()
-
getDefaultValue
public Expression getDefaultValue()
- Specified by:
getDefaultValue
in interfaceResolvedAnnotationMemberDeclaration
-
getType
public ResolvedType getType()
- Specified by:
getType
in interfaceResolvedValueDeclaration
-
getName
public String getName()
- Specified by:
getName
in interfaceResolvedDeclaration
-
-