Uses of Class
net.sourceforge.pmd.lang.java.types.TypingContext
-
Packages that use TypingContext Package Description net.sourceforge.pmd.lang.java.ast Contains the classes and interfaces modelling the Java AST.net.sourceforge.pmd.lang.java.types Support for compile-time type resolution on the AST. -
-
Uses of TypingContext in net.sourceforge.pmd.lang.java.ast
Methods in net.sourceforge.pmd.lang.java.ast with parameters of type TypingContext Modifier and Type Method Description @NonNull JTypeMirror
ASTFormalParameter. getTypeMirror(TypingContext ctx)
@NonNull JTypeMirror
ASTTypeExpression. getTypeMirror(TypingContext ctx)
JTypeMirror
TypeNode. getTypeMirror(TypingContext typing)
-
Uses of TypingContext in net.sourceforge.pmd.lang.java.types
Fields in net.sourceforge.pmd.lang.java.types declared as TypingContext Modifier and Type Field Description static TypingContext
TypingContext. DEFAULT
Empty context.Methods in net.sourceforge.pmd.lang.java.types that return TypingContext Modifier and Type Method Description TypingContext
TypingContext. andThen(Map<JVariableSymbol,@Nullable JTypeMirror> map)
Return a new typing context which uses this one as a parent.TypingContext
TypingContext. andThenZip(List<JVariableSymbol> symbols, List<JTypeMirror> types)
static TypingContext
TypingContext. zip(List<JVariableSymbol> symbols, List<JTypeMirror> types)
-