| Package | Description |
|---|---|
| cn.vertxup.ui.domain.tables.daos | |
| cn.vertxup.ui.domain.tables.pojos |
| Modifier and Type | Method and Description |
|---|---|
VQuery |
VQueryDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<VQuery> |
VQueryDao.fetchByCriteria(String... values)
Fetch records that have
CRITERIA IN (values) |
CompletableFuture<List<VQuery>> |
VQueryDao.fetchByCriteriaAsync(List<String> values)
Fetch records that have
CRITERIA IN (values) asynchronously |
List<VQuery> |
VQueryDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<VQuery>> |
VQueryDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<VQuery> |
VQueryDao.fetchByPager(String... values)
Fetch records that have
PAGER IN (values) |
CompletableFuture<List<VQuery>> |
VQueryDao.fetchByPagerAsync(List<String> values)
Fetch records that have
PAGER IN (values) asynchronously |
List<VQuery> |
VQueryDao.fetchByProjection(String... values)
Fetch records that have
PROJECTION IN (values) |
CompletableFuture<List<VQuery>> |
VQueryDao.fetchByProjectionAsync(List<String> values)
Fetch records that have
PROJECTION IN (values) asynchronously |
List<VQuery> |
VQueryDao.fetchBySorter(String... values)
Fetch records that have
SORTER IN (values) |
CompletableFuture<List<VQuery>> |
VQueryDao.fetchBySorterAsync(List<String> values)
Fetch records that have
SORTER IN (values) asynchronously |
CompletableFuture<VQuery> |
VQueryDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
VQueryDao.getId(VQuery object) |
| Modifier and Type | Method and Description |
|---|---|
VQuery |
VQuery.setCriteria(String criteria) |
VQuery |
VQuery.setKey(String key) |
VQuery |
VQuery.setPager(String pager) |
VQuery |
VQuery.setProjection(String projection) |
VQuery |
VQuery.setSorter(String sorter) |
| Constructor and Description |
|---|
VQuery(VQuery value) |
Copyright © 2021. All rights reserved.