Uses of Class
ca.cgjennings.algo.TextIndex.Query
-
Packages that use TextIndex.Query Package Description ca.cgjennings.algo -
-
Uses of TextIndex.Query in ca.cgjennings.algo
Subclasses of TextIndex.Query in ca.cgjennings.algo Modifier and Type Class Description static class
TextIndex.And
A query that matches only documents that match both of two child queries.static class
TextIndex.Atom
An atom is a query that matches all documents that contain a specified one-word search term.static class
TextIndex.Not
A query that matches every document except the documents matched by its child query.static class
TextIndex.Or
A query that matches any documents that match either of two child queries.Methods in ca.cgjennings.algo that return TextIndex.Query Modifier and Type Method Description TextIndex.Query
TextIndex.QueryParser. parse(java.lang.String qs)
Parses a search expression into an executable query.Constructors in ca.cgjennings.algo with parameters of type TextIndex.Query Constructor Description And(TextIndex.Query q1, TextIndex.Query q2)
Creates a new query that is the logical and of the specified queries.Not(TextIndex.Query q)
Creates a new query that is the logical negation of the specified query.Or(TextIndex.Query q1, TextIndex.Query q2)
Creates a new query that is the logical or of the specified queries.
-