public class QueryUtils extends Object
| Constructor and Description | 
|---|
| QueryUtils() | 
| Modifier and Type | Method and Description | 
|---|---|
| static Query | fixNegativeQuery(Query q)Fixes a negative query by adding a MatchAllDocs query clause. | 
| static Query | getAbs(Query q)Returns the original query if it was already a positive query, otherwise
 return the negative of the query (i.e., a positive query). | 
| static boolean | isNegative(Query q)return true if this query has no positive components | 
| static Query | makeQueryable(Query q)Makes negative queries suitable for querying by
 lucene. | 
public static boolean isNegative(Query q)
public static Query getAbs(Query q)
Example: both id:10 and id:-10 will return id:10
The caller can tell the sign of the original by a reference comparison between the original and returned query.
q - Query to create the absolute version ofpublic static Query makeQueryable(Query q)
Copyright © 2000-2013 Apache Software Foundation. All Rights Reserved.