A generator of AST representation of a query. This class uses the given factory
to produce a query parser which parses user specified query. If successful it
returns the root of an AST representing the parsed query.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-05 UTC."],[[["`QueryTreeBuilder` generates an Abstract Syntax Tree (AST) representation of a user-specified query."],["It utilizes a provided `QueryParserFactory` to parse the query, and returns the AST's root."],["The class inherits members from `java.lang.Object`, including methods like `clone`, `equals`, and `toString`."],["`QueryTreeBuilder` has two constructors: a default one, and another that takes a `QueryParserFactory` as a parameter."],["The `parse` method takes a String `query` and returns a `CommonTree` representing the parsed query, potentially throwing a `RecognitionException` for invalid queries."]]],[]]