Oracle Ultra Search APIs
9.2

Uses of Interface
oracle.ultrasearch.query.Query

Packages that use Query
oracle.ultrasearch.query This package contains all classes that are part of the new Oracle Ultra Search Query API and the Email API for the Oracle 9iAS release. 
 

Uses of Query in oracle.ultrasearch.query
 
Classes in oracle.ultrasearch.query that implement Query
 class AllOf
          Find documents with an attribute that has all of the values in a set.
 class And
          Combine two or more queries using logical AND.
 class AnyOf
          Find documents with an attribute that has at least one of a set of values.
 class Between
          Find documents that has an attribute value within a range.
 class Contains
          Find documents that contains some text within its content, or its string attributes.
 class Equals
          Find documents with an attribute that equals a value.
 class From
          Find documents within a group or a set of groups.
 class GreaterThan
          Class GreaterThan narrows the attribute to bigger values.
 class LessThan
          Class LessThan narrows the attribute to smaller values.
 class Or
          Combine two or more queries using logical OR.
 
Methods in oracle.ultrasearch.query with parameters of type Query
 int Instance.estimateHitCount(Query query, java.util.Locale qryLang, java.util.Locale docLang)
          Estimate the total number of hits for a query.
 Result Instance.getResult(Query query, java.util.Locale qryLang, int startPointer, int docsRequested, java.util.Locale docLanguage, Attribute[] atts, java.lang.String terms, boolean withCount)
          Get the result for a query.
 
Constructors in oracle.ultrasearch.query with parameters of type Query
Or.Or(Query qry1, Query qry2)
          Combine two queries using the OR operator
Or.Or(Query[] terms)
          Combine several queries using the OR operator
And.And(Query qry1, Query qry2)
          Combine two queries using the AND operator
And.And(Query[] terms)
          Combine several queries using the AND operator
 
Oracle Ultra Search APIs
9.2