Spring Data Solr

Uses of Class
org.springframework.data.solr.core.query.Node

Packages that use Node
org.springframework.data.solr.core Provides the classes necessary for Solr support. 
org.springframework.data.solr.core.query   
 

Uses of Node in org.springframework.data.solr.core
 

Methods in org.springframework.data.solr.core with parameters of type Node
 String QueryParserBase.createQueryStringFromNode(Node node)
           
 String QueryParserBase.createQueryStringFromNode(Node node, int position)
           
 

Uses of Node in org.springframework.data.solr.core.query
 

Subclasses of Node in org.springframework.data.solr.core.query
 class Criteria
          Criteria is the central class when constructing queries.
 class Crotch
           
 class SimpleStringCriteria
          The most basic criteria holding an already formatted QueryString that can be executed 'as is' against the solr server
 

Methods in org.springframework.data.solr.core.query with type parameters of type Node
abstract
<T extends Node>
T
Node.and(Node part)
          Combine two Nodes using and.
abstract
<T extends Node>
T
Node.and(String fieldname)
          Combine node with new Node for given fieldname using and.
abstract
<T extends Node>
T
Node.or(Node part)
          Combine two Nodes using or.
abstract
<T extends Node>
T
Node.or(String fieldname)
          Combine node with new Node for given fieldname using and.
 

Methods in org.springframework.data.solr.core.query that return Node
abstract  Node Node.between(Object lowerBound, Object upperBound)
           
abstract  Node Node.between(Object lowerBound, Object upperBound, boolean includeLowerBound, boolean includeUpperBound)
           
abstract  Node Node.boost(float value)
           
abstract  Node Node.contains(Iterable<String> values)
           
abstract  Node Node.contains(String... values)
           
abstract  Node Node.contains(String value)
           
abstract  Node Node.endsWith(Iterable<String> values)
           
abstract  Node Node.endsWith(String... values)
           
abstract  Node Node.endsWith(String postfix)
           
abstract  Node Node.expression(String nativeSolrQueryExpression)
           
abstract  Node Node.function(Function function)
           
abstract  Node Node.fuzzy(String value)
           
abstract  Node Node.fuzzy(String values, float levenshteinDistance)
           
 Node Node.getParent()
          Get parent Node.
abstract  Node Node.greaterThan(Object lowerBound)
           
abstract  Node Node.greaterThanEqual(Object lowerBound)
           
abstract  Node Node.in(Iterable<?> values)
           
abstract  Node Node.in(Object... values)
           
abstract  Node Node.is(Iterable<?> values)
           
abstract  Node Node.is(Object... values)
           
abstract  Node Node.is(Object value)
           
abstract  Node Node.isNotNull()
           
abstract  Node Node.isNull()
           
abstract  Node Node.lessThan(Object upperBound)
           
abstract  Node Node.lessThanEqual(Object upperBound)
           
abstract  Node Node.near(org.springframework.data.geo.Box box)
           
abstract  Node Node.near(org.springframework.data.geo.Point location, org.springframework.data.geo.Distance distance)
           
abstract  Node Node.not()
           
abstract  Node Node.sloppy(String phrase, int distance)
           
abstract  Node Node.startsWith(Iterable<String> values)
           
abstract  Node Node.startsWith(String... values)
           
abstract  Node Node.startsWith(String prefix)
           
abstract  Node Node.within(org.springframework.data.geo.Point location, org.springframework.data.geo.Distance distance)
           
 

Methods in org.springframework.data.solr.core.query with parameters of type Node
 Crotch Crotch.and(Node part)
           
 Crotch Criteria.and(Node node)
           
abstract
<T extends Node>
T
Node.and(Node part)
          Combine two Nodes using and.
 Crotch Crotch.or(Node part)
           
 Crotch Criteria.or(Node node)
           
abstract
<T extends Node>
T
Node.or(Node part)
          Combine two Nodes using or.
protected  void Node.setParent(Node parent)
           
 


Spring Data Solr

Copyright © 2011-2014-2014 Pivotal Software, Inc.. All Rights Reserved.