Package net.sourceforge.javamatch.query

Package query specifies queries that can be executed by the JavaMatch Matching Engine.

See:
          Description

Class Summary
BooleanEquals Class BooleanEquals is a query that check if a boolean member returns true
Contains Class Contains is a query that check if a string member of an object to match contains a certain substring
GreaterThan Class GreaterThan is a query that compares the value of an instance variable with the specified value
LessThan Class LessThan is a query that compares the value of an instance variable with the specified value
MatchQuery Class MatchQuery is extended by classes that can execute match queries on objects, and return a value based on how good the match is.
Maximum Class Maximum is a query that compares the value of an instance varaible with the values of the same variable in other instances.
Minimum Class Minimum is a query that compares the value of an instance varaible with the values of the same variable in other instances.
NotQuery Class NotQuery is a query that negates the match result of the underlying query
NumberEquals Class NumberEquals is a query that check if a value is equal to the specified one, when the value is a number
NumericQuery Class NumericQuery is the base class of all MatchQueries that operate on numeric values
QuerySet Class QuerySet combines multiple subqueries into a single query.
Range Class Range is a query that checks if the value of an instance variable is within the specified range
RegexMatches Class RegexMatches is a query that check if a string matches a certain regular expression
StringEquals Class StringEquals is a query that check if a value is equal to the specified one, when the value is a string
StringQuery Class StringQuery is the base class of all MatchQueries that operate on string values
 

Package net.sourceforge.javamatch.query Description

Package query specifies queries that can be executed by the JavaMatch Matching Engine. Queries can check if an object matches some criteria, for example if the number of items in stock is more than 10. A query can also compare an object against the other objects, for example to find the object with the lowest price. Queries may be combined, to search for the object that best matches all of the sub-queries.


Hosted by SourceForge.net/