Uses of Interface
com.github.javaparser.resolution.Resolvable
-
Packages that use Resolvable Package Description com.github.javaparser.ast.body com.github.javaparser.ast.expr com.github.javaparser.ast.stmt com.github.javaparser.ast.type -
-
Uses of Resolvable in com.github.javaparser.ast.body
Classes in com.github.javaparser.ast.body that implement Resolvable Modifier and Type Class Description classAnnotationDeclarationAn annotation type declaration.@interface X { ...classAnnotationMemberDeclarationThe "int id();" in@interface X { int id(); }classClassOrInterfaceDeclarationA definition of a class or interface.class X { ...classConstructorDeclarationA constructor declaration:class X { X() { } }where X(){} is the constructor declaration.classEnumConstantDeclarationOne of the values an enum can take.classEnumDeclarationThe declaration of an enum.enum X { ...classFieldDeclarationThe declaration of a field in a class.classMethodDeclarationA method declaration.classParameterThe parameters to a method or lambda.classVariableDeclaratorThe declaration of a variable.
Inint x = 14, y = 3;"int x = 14" and "int y = 3" are VariableDeclarators. -
Uses of Resolvable in com.github.javaparser.ast.expr
Classes in com.github.javaparser.ast.expr that implement Resolvable Modifier and Type Class Description classAnnotationExprA base class for the different types of annotations.classFieldAccessExprAccess of a field of an object.classMarkerAnnotationExprAn annotation that uses only the annotation type name.classMethodCallExprA method call on an object.classNameExprWhenever a SimpleName is used in an expression, it is wrapped in NameExpr.classNormalAnnotationExprAn annotation that has zero or more key-value pairs.@Mapping(a=5, d=10)classObjectCreationExprA constructor call.classSingleMemberAnnotationExprAn annotation that has a single value.classThisExprAn occurrence of the "this" keyword. -
Uses of Resolvable in com.github.javaparser.ast.stmt
Classes in com.github.javaparser.ast.stmt that implement Resolvable Modifier and Type Class Description classExplicitConstructorInvocationStmtA call to super or this in a constructor or initializer. -
Uses of Resolvable in com.github.javaparser.ast.type
Classes in com.github.javaparser.ast.type that implement Resolvable Modifier and Type Class Description classArrayTypeTo indicate that a type is an array, it gets wrapped in an ArrayType for every array level it has.classClassOrInterfaceTypeA class or an interface type.classIntersectionTypeRepresents a set of types.classPrimitiveTypeA primitive type.classReferenceTypeBase class for reference types.classTypeBase class for types.classTypeParameterA type parameter.classUnionTypeThe union typeclassUnknownTypeAn unknown parameter type object.classVarTypeA type called "var" waiting for Java to infer it.classVoidTypeThe return type of aMethodDeclarationwhen it returns void.classWildcardTypeA wildcard type argument.
-