Uses of Class
com.puppycrawl.tools.checkstyle.TreeWalker.AstState
-
Packages that use TreeWalker.AstState Package Description com.puppycrawl.tools.checkstyle Contains the implementation of the Checkstyle framework. -
-
Uses of TreeWalker.AstState in com.puppycrawl.tools.checkstyle
Methods in com.puppycrawl.tools.checkstyle that return TreeWalker.AstState Modifier and Type Method Description static TreeWalker.AstStateTreeWalker.AstState. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TreeWalker.AstState[]TreeWalker.AstState. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.puppycrawl.tools.checkstyle with parameters of type TreeWalker.AstState Modifier and Type Method Description private java.util.Collection<AbstractCheck>TreeWalker. getListOfChecks(DetailAST ast, TreeWalker.AstState astState)Method returns list of checks.private voidTreeWalker. notifyBegin(DetailAST rootAST, FileContents contents, TreeWalker.AstState astState)Notify checks that we are about to begin walking a tree.private voidTreeWalker. notifyEnd(DetailAST rootAST, TreeWalker.AstState astState)Notify checks that we have finished walking a tree.private voidTreeWalker. notifyLeave(DetailAST ast, TreeWalker.AstState astState)Notify checks that leaving a node.private voidTreeWalker. notifyVisit(DetailAST ast, TreeWalker.AstState astState)Notify checks that visiting a node.private voidTreeWalker. processIter(DetailAST root, TreeWalker.AstState astState)Processes a node calling interested checks at each node.private voidTreeWalker. walk(DetailAST ast, FileContents contents, TreeWalker.AstState astState)Initiates the walk of an AST.
-