Interface ResolvedValueDeclaration
-
- All Superinterfaces:
AssociableToAST
,ResolvedDeclaration
- All Known Subinterfaces:
ResolvedAnnotationMemberDeclaration
,ResolvedEnumConstantDeclaration
,ResolvedFieldDeclaration
,ResolvedParameterDeclaration
,ResolvedTypePatternDeclaration
public interface ResolvedValueDeclaration extends ResolvedDeclaration
Declaration of a value.- Author:
- Federico Tomassetti
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ResolvedType
getType()
Type of the declaration.-
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, getName, hasName, isEnumConstant, isField, isMethod, isParameter, isType, isTypePattern, isVariable
-
-
-
-
Method Detail
-
getType
ResolvedType getType()
Type of the declaration.
-
-