Uses of Class
com.github.javaparser.ParseResult
-
Packages that use ParseResult Package Description com.github.javaparser com.github.javaparser.ast com.github.javaparser.printer.lexicalpreservation com.github.javaparser.utils -
-
Uses of ParseResult in com.github.javaparser
Methods in com.github.javaparser that return ParseResult Modifier and Type Method Description <N extends Node>
ParseResult<N>JavaParser. parse(ParseStart<N> start, Provider provider)
Parses source code. -
Uses of ParseResult in com.github.javaparser.ast
Methods in com.github.javaparser.ast that return ParseResult Modifier and Type Method Description ParseResult<CompilationUnit>
CompilationUnit.Storage. reparse(JavaParser javaParser)
-
Uses of ParseResult in com.github.javaparser.printer.lexicalpreservation
Methods in com.github.javaparser.printer.lexicalpreservation that return types with arguments of type ParseResult Modifier and Type Method Description static <N extends Node>
Pair<ParseResult<N>,LexicalPreservingPrinter>LexicalPreservingPrinter. setup(ParseStart<N> parseStart, Provider provider)
Deprecated.just use the other constructor. -
Uses of ParseResult in com.github.javaparser.utils
Methods in com.github.javaparser.utils that return ParseResult Modifier and Type Method Description ParseResult<CompilationUnit>
SourceRoot. tryToParse(String pkg, String filename)
Tries to parse a .java files under the source root and returns the ParseResult.ParseResult<CompilationUnit>
SourceRoot. tryToParse(String pkg, String filename, JavaParser javaParser)
Tries to parse a .java files under the source root and returns the ParseResult.Methods in com.github.javaparser.utils that return types with arguments of type ParseResult Modifier and Type Method Description List<ParseResult<CompilationUnit>>
SourceRoot. getCache()
The Java files that have been parsed by this source root object, or have been added manually.List<Pair<Path,ParseResult<CompilationUnit>>>
SourceZip. parse()
Tries to parse all '.java' files in the ZIP located at this SourceZip's path and returns the parse results in a list.List<ParseResult<CompilationUnit>>
SourceRoot. tryToParse()
Tries to parse all .java files under the source root recursively, and returns all files ever parsed with this source root.List<ParseResult<CompilationUnit>>
SourceRoot. tryToParse(String startPackage)
Tries to parse all .java files in a package recursively, and returns all files ever parsed with this source root.List<ParseResult<CompilationUnit>>
SourceRoot. tryToParseParallelized()
Tries to parse all .java files under the source root recursively using multiple threads, and returns all files ever parsed with this source root.List<ParseResult<CompilationUnit>>
SourceRoot. tryToParseParallelized(String startPackage)
Tries to parse all .java files in a package recursively using multiple threads, and returns all files ever parsed with this source root.Methods in com.github.javaparser.utils with parameters of type ParseResult Modifier and Type Method Description SourceRoot.Callback.Result
SourceRoot.Callback. process(Path localPath, Path absolutePath, ParseResult<CompilationUnit> result)
void
SourceZip.Callback. process(Path relativeZipEntryPath, ParseResult<CompilationUnit> result)
Process the given parse result.
-