| Package | Description |
|---|---|
| org.iternine.jeppetto.dao |
| Modifier and Type | Method and Description |
|---|---|
void |
QueryModelDAO.deleteUsingQueryModel(QueryModel queryModel)
Delete objects of type T that correspond to the QueryModel.
|
T |
QueryModelDAO.findUniqueUsingQueryModel(QueryModel queryModel)
Find an object T that satisfies the QueryModel.
|
java.lang.Iterable<T> |
QueryModelDAO.findUsingQueryModel(QueryModel queryModel)
Find objects of type T that correspond to the QueryModel.
|
java.lang.Object |
QueryModelDAO.projectUsingQueryModel(QueryModel queryModel)
Use the QueryModel to narrow a set of results, then perform the
specified projection.
|
<U extends T> |
QueryModelDAO.updateUniqueUsingQueryModel(U updateObject,
QueryModel queryModel)
Apply the set of changes described in the update object to a single persisted
item that match the specified QueryModel.
|
<U extends T> |
QueryModelDAO.updateUsingQueryModel(U updateObject,
QueryModel queryModel)
Apply the set of changes described in the update object to persisted items that
match the specified QueryModel.
|
Copyright © 2017. All Rights Reserved.