Uses of Interface
org.modeshape.graph.query.parse.QueryParser

Packages that use QueryParser
org.modeshape.graph.query.parse This package defines the QueryParser interface, which defines a component that can parse a query represented in a specific language and produce the corresponding abstract query model representation. 
org.modeshape.jcr.query   
org.modeshape.jcr.xpath The components used to parse JCR XPath queries and translate them into equivalent JCR-SQL2 queries. 
 

Uses of QueryParser in org.modeshape.graph.query.parse
 

Classes in org.modeshape.graph.query.parse that implement QueryParser
 class SqlQueryParser
          A QueryParser implementation that parses a subset of SQL select and set queries.
 

Methods in org.modeshape.graph.query.parse that return QueryParser
 QueryParser QueryParsers.getParserFor(String language)
          Get the parser for the supplied language.
 QueryParser QueryParsers.removeLanguage(String language)
          Remove from this engine the language with the given name.
 

Methods in org.modeshape.graph.query.parse that return types with arguments of type QueryParser
 Collection<QueryParser> QueryParsers.removeLanguages(String firstLanguage, String... additionalLanguages)
          Remove from this engine the language with the given name.
 

Methods in org.modeshape.graph.query.parse with parameters of type QueryParser
 void QueryParsers.addLanguage(QueryParser languageParser)
          Add a language to this engine by supplying its parser.
 void QueryParsers.addLanguages(QueryParser firstLanguage, QueryParser... additionalLanguages)
          Add one or more languages to this engine by supplying the corresponding parsers.
 void QueryParsers.addLanguages(QueryParser firstLanguage, QueryParser... additionalLanguages)
          Add one or more languages to this engine by supplying the corresponding parsers.
 

Method parameters in org.modeshape.graph.query.parse with type arguments of type QueryParser
 void QueryParsers.addLanguages(Iterable<QueryParser> languages)
          Add one or more languages to this engine by supplying the corresponding parsers.
 

Constructors in org.modeshape.graph.query.parse with parameters of type QueryParser
QueryParsers(QueryParser... parsers)
          Create a new collection of the supplied QueryParser objects.
 

Constructor parameters in org.modeshape.graph.query.parse with type arguments of type QueryParser
QueryParsers(Iterable<QueryParser> parsers)
          Create a new collection of the supplied QueryParser objects.
 

Uses of QueryParser in org.modeshape.jcr.query
 

Classes in org.modeshape.jcr.query that implement QueryParser
 class JcrQomQueryParser
          A parser for the JCR Query Object Model language.
 class JcrSql2QueryParser
          An specialization of the SqlQueryParser that uses a different language name that matches the JCR 2.0 specification.
 class JcrSqlQueryParser
          Parser for JCR-SQL queries that produces abstract query model (AQM) objects.
 

Uses of QueryParser in org.modeshape.jcr.xpath
 

Classes in org.modeshape.jcr.xpath that implement QueryParser
 class XPathQueryParser
          A QueryParser implementation that accepts XPath expressions and converts them to a ModeShape Abstract Query Model representation.
 



Copyright © 2008-2011 JBoss, a division of Red Hat. All Rights Reserved.