Java Doc for QueryParsing.java in  » Search-Engine » apache-solr-1.2.0 » org » apache » solr » search » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Search Engine » apache solr 1.2.0 » org.apache.solr.search 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.solr.search.QueryParsing

QueryParsing
public class QueryParsing (Code)
Collection of static utilities usefull for query parsing.
author:
   yonik
version:
   $Id: QueryParsing.java 542679 2007-05-29 22:28:21Z ryan $

Inner Class :public static class SortSpec

Field Summary
final public static  StringOP
    


Method Summary
public static  FunctionQueryparseFunction(String func, IndexSchema schema)
     Parse a function, returning a FunctionQuery

Syntax Examples....

public static  QueryparseQuery(String qs, IndexSchema schema)
     Helper utility for parsing a query using the Lucene QueryParser syntax.
public static  QueryparseQuery(String qs, String defaultField, IndexSchema schema)
     Helper utility for parsing a query using the Lucene QueryParser syntax.
public static  QueryparseQuery(String qs, String defaultField, SolrParams params, IndexSchema schema)
     Helper utility for parsing a query using the Lucene QueryParser syntax.
public static  SortSpecparseSort(String sortSpec, IndexSchema schema)
     Returns null if the sortSpec is the standard sort desc.
public static  voidtoString(Query query, IndexSchema schema, Appendable out, int flags)
    
public static  StringtoString(Query query, IndexSchema schema)
     Formats a Query for debugging, using the IndexSchema to make complex field types readable.

The benefit of using this method instead of calling Query.toString directly is that it knows about the data types of each field, so any field which is encoded in a particularly complex way is still readable.

public static  List<String>toString(List<Query> queries, IndexSchema schema)
    
static  FieldTypewriteFieldName(String name, IndexSchema schema, Appendable out, int flags)
    
static  voidwriteFieldVal(String val, FieldType ft, Appendable out, int flags)
    

Field Detail
OP
final public static String OP(Code)
the SolrParam used to override the QueryParser "default operator"





Method Detail
parseFunction
public static FunctionQuery parseFunction(String func, IndexSchema schema) throws ParseException(Code)
Parse a function, returning a FunctionQuery

Syntax Examples....

 // Numeric fields default to correct type
 // (ie: IntFieldSource or FloatFieldSource)
 // Others use implicit ord(...) to generate numeric field value
 myfield
 // OrdFieldSource
 ord(myfield)
 // ReverseOrdFieldSource
 rord(myfield)
 // LinearFloatFunction on numeric field value
 linear(myfield,1,2)
 // MaxFloatFunction of LinearFloatFunction on numeric field value or constant
 max(linear(myfield,1,2),100)
 // ReciprocalFloatFunction on numeric field value
 recip(myfield,1,2,3)
 // ReciprocalFloatFunction on ReverseOrdFieldSource
 recip(rord(myfield),1,2,3)
 // ReciprocalFloatFunction on LinearFloatFunction on ReverseOrdFieldSource
 recip(linear(rord(myfield),1,2),3,4,5)
 



parseQuery
public static Query parseQuery(String qs, IndexSchema schema)(Code)
Helper utility for parsing a query using the Lucene QueryParser syntax.
Parameters:
  qs - query expression in standard Lucene syntax
Parameters:
  schema - used for default operator (overridden by params) and passed to the query parser for field format analysis information



parseQuery
public static Query parseQuery(String qs, String defaultField, IndexSchema schema)(Code)
Helper utility for parsing a query using the Lucene QueryParser syntax.
Parameters:
  qs - query expression in standard Lucene syntax
Parameters:
  defaultField - default field used for unqualified search terms in the query expression
Parameters:
  schema - used for default operator (overridden by params) and passed to the query parser for field format analysis information



parseQuery
public static Query parseQuery(String qs, String defaultField, SolrParams params, IndexSchema schema)(Code)
Helper utility for parsing a query using the Lucene QueryParser syntax.
Parameters:
  qs - query expression in standard Lucene syntax
Parameters:
  defaultField - default field used for unqualified search terms in the query expression
Parameters:
  params - used to determine the default operator, overriding the schema specified operator
Parameters:
  schema - used for default operator (overridden by params) and passed to the query parser for field format analysis information



parseSort
public static SortSpec parseSort(String sortSpec, IndexSchema schema)(Code)
Returns null if the sortSpec is the standard sort desc.

The form of the sort specification string currently parsed is:

>
 SortSpec ::= SingleSort [, SingleSort]*
 SingleSort ::=  SortDirection
 SortDirection ::= top | desc | bottom | asc
 
Examples:
 score desc               #normal sort by score (will return null)
 weight bottom            #sort by weight ascending 
 weight desc              #sort by weight descending
 height desc,weight desc  #sort by height descending, and use weight descending to break any ties
 height desc,weight asc   #sort by height descending, using weight ascending as a tiebreaker
 



toString
public static void toString(Query query, IndexSchema schema, Appendable out, int flags) throws IOException(Code)

See Also:   QueryParsing.toString(Query,IndexSchema)
See Also:   



toString
public static String toString(Query query, IndexSchema schema)(Code)
Formats a Query for debugging, using the IndexSchema to make complex field types readable.

The benefit of using this method instead of calling Query.toString directly is that it knows about the data types of each field, so any field which is encoded in a particularly complex way is still readable. The downside is that it only knows about built in Query types, and will not be able to format custom Query classes.




toString
public static List<String> toString(List<Query> queries, IndexSchema schema)(Code)
Builds a list of String which are stringified versions of a list of Queries



writeFieldName
static FieldType writeFieldName(String name, IndexSchema schema, Appendable out, int flags) throws IOException(Code)



writeFieldVal
static void writeFieldVal(String val, FieldType ft, Appendable out, int flags) throws IOException(Code)



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.