| Package | Description |
|---|---|
| cn.vertxup.ui.domain.tables.daos | |
| cn.vertxup.ui.domain.tables.pojos |
| Modifier and Type | Method and Description |
|---|---|
VTable |
VTableDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<VTable> |
VTableDao.fetchByBordered(Boolean... values)
Fetch records that have
BORDERED IN (values) |
CompletableFuture<List<VTable>> |
VTableDao.fetchByBorderedAsync(List<Boolean> values)
Fetch records that have
BORDERED IN (values) asynchronously |
List<VTable> |
VTableDao.fetchByClassName(String... values)
Fetch records that have
CLASS_NAME IN (values) |
CompletableFuture<List<VTable>> |
VTableDao.fetchByClassNameAsync(List<String> values)
Fetch records that have
CLASS_NAME IN (values) asynchronously |
List<VTable> |
VTableDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<VTable>> |
VTableDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<VTable> |
VTableDao.fetchByOpConfig(String... values)
Fetch records that have
OP_CONFIG IN (values) |
CompletableFuture<List<VTable>> |
VTableDao.fetchByOpConfigAsync(List<String> values)
Fetch records that have
OP_CONFIG IN (values) asynchronously |
List<VTable> |
VTableDao.fetchByOpDataIndex(String... values)
Fetch records that have
OP_DATA_INDEX IN (values) |
CompletableFuture<List<VTable>> |
VTableDao.fetchByOpDataIndexAsync(List<String> values)
Fetch records that have
OP_DATA_INDEX IN (values) asynchronously |
List<VTable> |
VTableDao.fetchByOpFixed(Boolean... values)
Fetch records that have
OP_FIXED IN (values) |
CompletableFuture<List<VTable>> |
VTableDao.fetchByOpFixedAsync(List<Boolean> values)
Fetch records that have
OP_FIXED IN (values) asynchronously |
List<VTable> |
VTableDao.fetchByOpTitle(String... values)
Fetch records that have
OP_TITLE IN (values) |
CompletableFuture<List<VTable>> |
VTableDao.fetchByOpTitleAsync(List<String> values)
Fetch records that have
OP_TITLE IN (values) asynchronously |
List<VTable> |
VTableDao.fetchByRowClick(String... values)
Fetch records that have
ROW_CLICK IN (values) |
CompletableFuture<List<VTable>> |
VTableDao.fetchByRowClickAsync(List<String> values)
Fetch records that have
ROW_CLICK IN (values) asynchronously |
List<VTable> |
VTableDao.fetchByRowContextMenu(String... values)
Fetch records that have
ROW_CONTEXT_MENU IN (values) |
CompletableFuture<List<VTable>> |
VTableDao.fetchByRowContextMenuAsync(List<String> values)
Fetch records that have
ROW_CONTEXT_MENU IN (values) asynchronously |
List<VTable> |
VTableDao.fetchByRowDoubleClick(String... values)
Fetch records that have
ROW_DOUBLE_CLICK IN (values) |
CompletableFuture<List<VTable>> |
VTableDao.fetchByRowDoubleClickAsync(List<String> values)
Fetch records that have
ROW_DOUBLE_CLICK IN (values) asynchronously |
List<VTable> |
VTableDao.fetchByRowMouseEnter(String... values)
Fetch records that have
ROW_MOUSE_ENTER IN (values) |
CompletableFuture<List<VTable>> |
VTableDao.fetchByRowMouseEnterAsync(List<String> values)
Fetch records that have
ROW_MOUSE_ENTER IN (values) asynchronously |
List<VTable> |
VTableDao.fetchByRowMouseLeave(String... values)
Fetch records that have
ROW_MOUSE_LEAVE IN (values) |
CompletableFuture<List<VTable>> |
VTableDao.fetchByRowMouseLeaveAsync(List<String> values)
Fetch records that have
ROW_MOUSE_LEAVE IN (values) asynchronously |
List<VTable> |
VTableDao.fetchBySize(String... values)
Fetch records that have
SIZE IN (values) |
CompletableFuture<List<VTable>> |
VTableDao.fetchBySizeAsync(List<String> values)
Fetch records that have
SIZE IN (values) asynchronously |
List<VTable> |
VTableDao.fetchByTotalReport(String... values)
Fetch records that have
TOTAL_REPORT IN (values) |
CompletableFuture<List<VTable>> |
VTableDao.fetchByTotalReportAsync(List<String> values)
Fetch records that have
TOTAL_REPORT IN (values) asynchronously |
List<VTable> |
VTableDao.fetchByTotalSelected(String... values)
Fetch records that have
TOTAL_SELECTED IN (values) |
CompletableFuture<List<VTable>> |
VTableDao.fetchByTotalSelectedAsync(List<String> values)
Fetch records that have
TOTAL_SELECTED IN (values) asynchronously |
CompletableFuture<VTable> |
VTableDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
VTableDao.getId(VTable object) |
| Modifier and Type | Method and Description |
|---|---|
VTable |
VTable.setBordered(Boolean bordered) |
VTable |
VTable.setClassName(String className) |
VTable |
VTable.setKey(String key) |
VTable |
VTable.setOpConfig(String opConfig) |
VTable |
VTable.setOpDataIndex(String opDataIndex) |
VTable |
VTable.setOpFixed(Boolean opFixed) |
VTable |
VTable.setOpTitle(String opTitle) |
VTable |
VTable.setRowClick(String rowClick) |
VTable |
VTable.setRowContextMenu(String rowContextMenu) |
VTable |
VTable.setRowDoubleClick(String rowDoubleClick) |
VTable |
VTable.setRowMouseEnter(String rowMouseEnter) |
VTable |
VTable.setRowMouseLeave(String rowMouseLeave) |
VTable |
VTable.setSize(String size) |
VTable |
VTable.setTotalReport(String totalReport) |
VTable |
VTable.setTotalSelected(String totalSelected) |
| Constructor and Description |
|---|
VTable(VTable value) |
Copyright © 2021. All rights reserved.