| Package | Description |
|---|---|
| cn.vertxup.ui.domain.tables.daos | |
| cn.vertxup.ui.domain.tables.pojos |
| Modifier and Type | Method and Description |
|---|---|
UiColumn |
UiColumnDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<UiColumn> |
UiColumnDao.fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<UiColumn>> |
UiColumnDao.fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<UiColumn> |
UiColumnDao.fetchByClassName(String... values)
Fetch records that have
CLASS_NAME IN (values) |
CompletableFuture<List<UiColumn>> |
UiColumnDao.fetchByClassNameAsync(List<String> values)
Fetch records that have
CLASS_NAME IN (values) asynchronously |
List<UiColumn> |
UiColumnDao.fetchByControlId(String... values)
Fetch records that have
CONTROL_ID IN (values) |
CompletableFuture<List<UiColumn>> |
UiColumnDao.fetchByControlIdAsync(List<String> values)
Fetch records that have
CONTROL_ID IN (values) asynchronously |
List<UiColumn> |
UiColumnDao.fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<UiColumn>> |
UiColumnDao.fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<UiColumn> |
UiColumnDao.fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<UiColumn>> |
UiColumnDao.fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<UiColumn> |
UiColumnDao.fetchByDataIndex(String... values)
Fetch records that have
DATA_INDEX IN (values) |
CompletableFuture<List<UiColumn>> |
UiColumnDao.fetchByDataIndexAsync(List<String> values)
Fetch records that have
DATA_INDEX IN (values) asynchronously |
List<UiColumn> |
UiColumnDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<UiColumn>> |
UiColumnDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<UiColumn> |
UiColumnDao.fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<UiColumn>> |
UiColumnDao.fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<UiColumn> |
UiColumnDao.fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<UiColumn>> |
UiColumnDao.fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<UiColumn> |
UiColumnDao.fetchByRender(String... values)
Fetch records that have
RENDER IN (values) |
CompletableFuture<List<UiColumn>> |
UiColumnDao.fetchByRenderAsync(List<String> values)
Fetch records that have
RENDER IN (values) asynchronously |
List<UiColumn> |
UiColumnDao.fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<UiColumn>> |
UiColumnDao.fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<UiColumn> |
UiColumnDao.fetchByTitle(String... values)
Fetch records that have
TITLE IN (values) |
CompletableFuture<List<UiColumn>> |
UiColumnDao.fetchByTitleAsync(List<String> values)
Fetch records that have
TITLE IN (values) asynchronously |
List<UiColumn> |
UiColumnDao.fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<UiColumn>> |
UiColumnDao.fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<UiColumn> |
UiColumnDao.fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<UiColumn>> |
UiColumnDao.fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
List<UiColumn> |
UiColumnDao.fetchByWidth(Integer... values)
Fetch records that have
WIDTH IN (values) |
CompletableFuture<List<UiColumn>> |
UiColumnDao.fetchByWidthAsync(List<Integer> values)
Fetch records that have
WIDTH IN (values) asynchronously |
CompletableFuture<UiColumn> |
UiColumnDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
UiColumnDao.getId(UiColumn object) |
| Modifier and Type | Method and Description |
|---|---|
UiColumn |
UiColumn.setActive(Boolean active) |
UiColumn |
UiColumn.setClassName(String className) |
UiColumn |
UiColumn.setControlId(String controlId) |
UiColumn |
UiColumn.setCreatedAt(LocalDateTime createdAt) |
UiColumn |
UiColumn.setCreatedBy(String createdBy) |
UiColumn |
UiColumn.setDataIndex(String dataIndex) |
UiColumn |
UiColumn.setKey(String key) |
UiColumn |
UiColumn.setLanguage(String language) |
UiColumn |
UiColumn.setMetadata(String metadata) |
UiColumn |
UiColumn.setRender(String render) |
UiColumn |
UiColumn.setSigma(String sigma) |
UiColumn |
UiColumn.setTitle(String title) |
UiColumn |
UiColumn.setUpdatedAt(LocalDateTime updatedAt) |
UiColumn |
UiColumn.setUpdatedBy(String updatedBy) |
UiColumn |
UiColumn.setWidth(Integer width) |
| Constructor and Description |
|---|
UiColumn(UiColumn value) |
Copyright © 2019. All rights reserved.