| Package | Description |
|---|---|
| org.objectquery | |
| org.objectquery.generic |
| Class and Description |
|---|
| BaseQuery |
| DeleteQuery
delete query to write a delete query with a set of condition
usage example:
DeleteQuery<Person> delete = new GenericDeleteQuery<Person>(Person.class);
Person toDelete = delete.target();
delete.eq(toDelete.getName(),"match name");
|
| HavingCondition |
| InsertQuery
insert query allow to declare a query to insert a new record.
|
| QueryCondition
Base Condition interface that allow to add condition and group of condition.
|
| QueryEngine |
| SelectQuery
SelectQuery is the main interface for build a "SELECT" query, it allow to add
projection, condition, order and having clauses using instances of domain
classes.
|
| UpdateQuery
Update query allow to set the values and condition of a update query.
|
| Class and Description |
|---|
| BaseQuery |
| DeleteQuery
delete query to write a delete query with a set of condition
usage example:
DeleteQuery<Person> delete = new GenericDeleteQuery<Person>(Person.class);
Person toDelete = delete.target();
delete.eq(toDelete.getName(),"match name");
|
| HavingCondition |
| InsertQuery
insert query allow to declare a query to insert a new record.
|
| QueryCondition
Base Condition interface that allow to add condition and group of condition.
|
| SelectQuery
SelectQuery is the main interface for build a "SELECT" query, it allow to add
projection, condition, order and having clauses using instances of domain
classes.
|
| UpdateQuery
Update query allow to set the values and condition of a update query.
|
Copyright © 2014 Object Query. All rights reserved.