Uses of Interface
com.github.javaparser.resolution.Resolvable
Packages that use Resolvable
Package
Description
-
Uses of Resolvable in com.github.javaparser.ast.body
Classes in com.github.javaparser.ast.body that implement ResolvableModifier and TypeClassDescriptionclass
An annotation type declaration.@interface X { ... }
class
The "int id();" in@interface X { int id(); }
class
A definition of a class or interface.class X { ... }
interface X { ... }
class
The record declaration's constructorclass
A constructor declaration:class X { X() { } }
where X(){} is the constructor declaration.class
One of the values an enum can take.class
The declaration of an enum.enum X { ... }
class
The declaration of a field in a class.class
A method declaration.class
The parameters to a method or lambda.class
The record declarationclass
The 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 ResolvableModifier and TypeClassDescriptionclass
A base class for the different types of annotations.class
Access of a field of an object or a class.class
An annotation that uses only the annotation type name.class
A method call on an object or a class.class
Method reference expressions introduced in Java 8 specifically designed to simplify lambda Expressions.class
Whenever a SimpleName is used in an expression, it is wrapped in NameExpr.class
An annotation that has zero or more key-value pairs.@Mapping(a=5, d=10)
class
A constructor call.class
An annotation that has a single value.class
An occurrence of the "this" keyword. -
Uses of Resolvable in com.github.javaparser.ast.stmt
Classes in com.github.javaparser.ast.stmt that implement ResolvableModifier and TypeClassDescriptionclass
A 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 ResolvableModifier and TypeClassDescriptionclass
To indicate that a type is an array, it gets wrapped in an ArrayType for every array level it has.class
A class or an interface type.class
Represents a set of types.class
A primitive type.class
Base class for reference types.class
Base class for types.class
A type parameter.class
The union typeclass
An unknown parameter type object.class
A type called "var" waiting for Java to infer it.class
The return type of aMethodDeclaration
when it returns void.class
A wildcard type argument.