Uses of Interface
org.jboss.dna.graph.query.model.FullTextSearch.Term

Packages that use FullTextSearch.Term
org.jboss.dna.graph.query.model The Abstract Query Model is a vocabulary that can be used to construct a language-neutral representation of a query. 
org.jboss.dna.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. 
 

Uses of FullTextSearch.Term in org.jboss.dna.graph.query.model
 

Classes in org.jboss.dna.graph.query.model that implement FullTextSearch.Term
static class FullTextSearch.CompoundTerm
          A list of FullTextSearch.Terms.
static class FullTextSearch.Conjunction
          A set of FullTextSearch.Terms that are ANDed together.
static class FullTextSearch.Disjunction
          A set of FullTextSearch.Terms that are ORed together.
static class FullTextSearch.NegationTerm
          A FullTextSearch.Term that represents a search term that requires another term to not appear.
static class FullTextSearch.SimpleTerm
          A FullTextSearch.Term that represents a single search term.
 

Methods in org.jboss.dna.graph.query.model that return FullTextSearch.Term
 FullTextSearch.Term FullTextSearch.NegationTerm.getNegatedTerm()
          Get the term that is negated.
 FullTextSearch.Term FullTextSearch.getTerm()
          Get the formal FullTextSearch.Term representation of the expression.
 

Methods in org.jboss.dna.graph.query.model that return types with arguments of type FullTextSearch.Term
 List<FullTextSearch.Term> FullTextSearch.CompoundTerm.getTerms()
          Get the terms that make up this compound term.
 Iterator<FullTextSearch.Term> FullTextSearch.CompoundTerm.iterator()
          
 

Constructors in org.jboss.dna.graph.query.model with parameters of type FullTextSearch.Term
FullTextSearch.NegationTerm(FullTextSearch.Term negatedTerm)
           
FullTextSearch(SelectorName selectorName, String propertyName, String fullTextSearchExpression, FullTextSearch.Term term)
          Create a constraint defining a full-text search against the property values on node within the search scope.
 

Constructor parameters in org.jboss.dna.graph.query.model with type arguments of type FullTextSearch.Term
FullTextSearch.Conjunction(List<FullTextSearch.Term> terms)
          Create a conjunction of the supplied terms.
FullTextSearch.Disjunction(List<FullTextSearch.Term> terms)
          Create a disjunction of the supplied terms.
 

Uses of FullTextSearch.Term in org.jboss.dna.graph.query.parse
 

Methods in org.jboss.dna.graph.query.parse that return FullTextSearch.Term
 FullTextSearch.Term FullTextSearchParser.parse(String fullTextSearchExpression)
          Parse the full-text search criteria given in the supplied string.
 FullTextSearch.Term FullTextSearchParser.parse(TokenStream tokens)
          Parse the full-text search criteria from the supplied token stream.
 



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