Uses of Class
com.github.javaparser.ParserConfiguration
-
Packages that use ParserConfiguration Package Description com.github.javaparser com.github.javaparser.ast.validator.postprocessors com.github.javaparser.utils -
-
Uses of ParserConfiguration in com.github.javaparser
Methods in com.github.javaparser that return ParserConfiguration Modifier and Type Method Description static ParserConfiguration
StaticJavaParser. getConfiguration()
Deprecated.useStaticJavaParser.getParserConfiguration()
insteadParserConfiguration
JavaParser. getParserConfiguration()
ParserConfiguration
JavaParserAdapter. getParserConfiguration()
static ParserConfiguration
StaticJavaParser. getParserConfiguration()
Get the configuration for the parse... methods.ParserConfiguration
ParserConfiguration. setAttributeComments(boolean attributeComments)
Whether to run CommentsInserter, which will put the comments that were found in the source code into the comment and javadoc fields of the nodes it thinks they refer to.ParserConfiguration
ParserConfiguration. setCharacterEncoding(Charset characterEncoding)
The character encoding used for reading input from files and streams.ParserConfiguration
ParserConfiguration. setDetectOriginalLineSeparator(boolean detectOriginalLineSeparator)
ParserConfiguration
ParserConfiguration. setDoNotAssignCommentsPrecedingEmptyLines(boolean doNotAssignCommentsPrecedingEmptyLines)
ParserConfiguration
ParserConfiguration. setIgnoreAnnotationsWhenAttributingComments(boolean ignoreAnnotationsWhenAttributingComments)
ParserConfiguration
ParserConfiguration. setLanguageLevel(ParserConfiguration.LanguageLevel languageLevel)
ParserConfiguration
ParserConfiguration. setLexicalPreservationEnabled(boolean lexicalPreservationEnabled)
Disabled by default.ParserConfiguration
ParserConfiguration. setPreprocessUnicodeEscapes(boolean preprocessUnicodeEscapes)
When set to true, unicode escape handling is done by preprocessing the whole input, meaning that all unicode escapes are turned into unicode characters before parsing.ParserConfiguration
ParserConfiguration. setStoreTokens(boolean storeTokens)
ParserConfiguration
ParserConfiguration. setSymbolResolver(SymbolResolver symbolResolver)
Set the SymbolResolver to be injected while parsing.ParserConfiguration
ParserConfiguration. setTabSize(int tabSize)
When a TAB character is encountered during parsing, the column position will be increased by this value.Methods in com.github.javaparser with parameters of type ParserConfiguration Modifier and Type Method Description void
Processor. postProcess(ParseResult<? extends Node> result, ParserConfiguration configuration)
Makes the parser do a post-parsing step before the result is returned to the user.static void
StaticJavaParser. setConfiguration(ParserConfiguration configuration)
Set the configuration for the static parse... methods.Constructors in com.github.javaparser with parameters of type ParserConfiguration Constructor Description JavaParser(ParserConfiguration configuration)
Instantiate the parser. -
Uses of ParserConfiguration in com.github.javaparser.ast.validator.postprocessors
Methods in com.github.javaparser.ast.validator.postprocessors with parameters of type ParserConfiguration Modifier and Type Method Description void
PostProcessors. postProcess(ParseResult<? extends Node> result, ParserConfiguration configuration)
-
Uses of ParserConfiguration in com.github.javaparser.utils
Methods in com.github.javaparser.utils that return ParserConfiguration Modifier and Type Method Description ParserConfiguration
CollectionStrategy. getParserConfiguration()
ParserConfiguration
ParserCollectionStrategy. getParserConfiguration()
ParserConfiguration
SourceRoot. getParserConfiguration()
ParserConfiguration
SourceZip. getParserConfiguration()
Methods in com.github.javaparser.utils with parameters of type ParserConfiguration Modifier and Type Method Description SourceRoot
SourceRoot. parse(String startPackage, ParserConfiguration configuration, SourceRoot.Callback callback)
Tries to parse all .java files in a package recursively and passes them one by one to the callback.SourceRoot
SourceRoot. parse(String startPackage, String filename, ParserConfiguration configuration, SourceRoot.Callback callback)
Locates the .java file with the provided package and file name, parses it and passes it to the callback.SourceRoot
SourceRoot. parseParallelized(String startPackage, ParserConfiguration configuration, SourceRoot.Callback callback)
Tries to parse all .java files in a package recursively using multiple threads, and passes them one by one to the callback.SourceRoot
SourceRoot. setParserConfiguration(ParserConfiguration parserConfiguration)
Set the parser configuration that is used for parsing when no configuration is passed to a method.SourceZip
SourceZip. setParserConfiguration(ParserConfiguration parserConfiguration)
ParseResult<CompilationUnit>
SourceRoot. tryToParse(String startPackage, String filename, ParserConfiguration configuration)
Tries to parse a .java files under the source root and returns the ParseResult.Constructors in com.github.javaparser.utils with parameters of type ParserConfiguration Constructor Description ParserCollectionStrategy(ParserConfiguration parserConfiguration)
ProjectRoot(Path root, ParserConfiguration parserConfiguration)
SourceRoot(Path root, ParserConfiguration parserConfiguration)
SourceZip(Path zipPath, ParserConfiguration configuration)
Create a new ZIP parser.
-