googlesearch
Class OrQuery
java.lang.Object
googlesearch.Query
googlesearch.CompositeQuery
googlesearch.OrQuery
public class OrQuery
- extends CompositeQuery
Represents a query that will find pages that contain the one word OR another (or both). Normally Google requires
a page to have all the words in a query as in an AND query.
- Author:
- jbergin
Method Summary |
java.lang.String |
buildSearchString(java.util.List<Query> start,
java.util.List<Query> finish)
Used by getSearchString to build up the query string recursively from the
parts. |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
OrQuery
public OrQuery(Query left,
Query right)
- Create an OR query. The words of the left query OR those of the right: "Joseph" OR "Bergin" without requiring both
Words. Normally left and right are Simple Queries.
- Parameters:
left
- the term to the left of the OR logical operatorright
- the search term to the right of the operator.
buildSearchString
public java.lang.String buildSearchString(java.util.List<Query> start,
java.util.List<Query> finish)
- Description copied from class:
Query
- Used by getSearchString to build up the query string recursively from the
parts. Note that the work is done on the unwinding phase of the
recursion. Those query fragments that must appear first or last in a
query string defer being added to the string until the end, by putting a
reference to themselves intoone of the two lists. These lists are then
processed at the end after some verification.
- Specified by:
buildSearchString
in class Query
- Parameters:
start
- the list of query objects that must come first in a Google
queryfinish
- the list of query objects that must come last in a Google
query. e.g. site:
- Returns:
- the query string