| Package | Description |
|---|---|
| cn.vertxup.ambient.domain.tables.daos | |
| cn.vertxup.ambient.domain.tables.pojos |
| Modifier and Type | Method and Description |
|---|---|
XTabular |
XTabularDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<XTabular> |
XTabularDao.fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<XTabular>> |
XTabularDao.fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<XTabular> |
XTabularDao.fetchByAppId(String... values)
Fetch records that have
APP_ID IN (values) |
CompletableFuture<List<XTabular>> |
XTabularDao.fetchByAppIdAsync(List<String> values)
Fetch records that have
APP_ID IN (values) asynchronously |
List<XTabular> |
XTabularDao.fetchByCode(String... values)
Fetch records that have
CODE IN (values) |
CompletableFuture<List<XTabular>> |
XTabularDao.fetchByCodeAsync(List<String> values)
Fetch records that have
CODE IN (values) asynchronously |
List<XTabular> |
XTabularDao.fetchByComment(String... values)
Fetch records that have
COMMENT IN (values) |
CompletableFuture<List<XTabular>> |
XTabularDao.fetchByCommentAsync(List<String> values)
Fetch records that have
COMMENT IN (values) asynchronously |
List<XTabular> |
XTabularDao.fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<XTabular>> |
XTabularDao.fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<XTabular> |
XTabularDao.fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<XTabular>> |
XTabularDao.fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<XTabular> |
XTabularDao.fetchByIcon(String... values)
Fetch records that have
ICON IN (values) |
CompletableFuture<List<XTabular>> |
XTabularDao.fetchByIconAsync(List<String> values)
Fetch records that have
ICON IN (values) asynchronously |
List<XTabular> |
XTabularDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<XTabular>> |
XTabularDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<XTabular> |
XTabularDao.fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<XTabular>> |
XTabularDao.fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<XTabular> |
XTabularDao.fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<XTabular>> |
XTabularDao.fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<XTabular> |
XTabularDao.fetchByName(String... values)
Fetch records that have
NAME IN (values) |
CompletableFuture<List<XTabular>> |
XTabularDao.fetchByNameAsync(List<String> values)
Fetch records that have
NAME IN (values) asynchronously |
List<XTabular> |
XTabularDao.fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<XTabular>> |
XTabularDao.fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<XTabular> |
XTabularDao.fetchBySort(Integer... values)
Fetch records that have
SORT IN (values) |
CompletableFuture<List<XTabular>> |
XTabularDao.fetchBySortAsync(List<Integer> values)
Fetch records that have
SORT IN (values) asynchronously |
List<XTabular> |
XTabularDao.fetchByType(String... values)
Fetch records that have
TYPE IN (values) |
CompletableFuture<List<XTabular>> |
XTabularDao.fetchByTypeAsync(List<String> values)
Fetch records that have
TYPE IN (values) asynchronously |
List<XTabular> |
XTabularDao.fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<XTabular>> |
XTabularDao.fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<XTabular> |
XTabularDao.fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<XTabular>> |
XTabularDao.fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
CompletableFuture<XTabular> |
XTabularDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
XTabularDao.getId(XTabular object) |
| Modifier and Type | Method and Description |
|---|---|
XTabular |
XTabular.setActive(Boolean active) |
XTabular |
XTabular.setAppId(String appId) |
XTabular |
XTabular.setCode(String code) |
XTabular |
XTabular.setComment(String comment) |
XTabular |
XTabular.setCreatedAt(LocalDateTime createdAt) |
XTabular |
XTabular.setCreatedBy(String createdBy) |
XTabular |
XTabular.setIcon(String icon) |
XTabular |
XTabular.setKey(String key) |
XTabular |
XTabular.setLanguage(String language) |
XTabular |
XTabular.setMetadata(String metadata) |
XTabular |
XTabular.setName(String name) |
XTabular |
XTabular.setSigma(String sigma) |
XTabular |
XTabular.setSort(Integer sort) |
XTabular |
XTabular.setType(String type) |
XTabular |
XTabular.setUpdatedAt(LocalDateTime updatedAt) |
XTabular |
XTabular.setUpdatedBy(String updatedBy) |
| Constructor and Description |
|---|
XTabular(XTabular value) |
Copyright © 2021. All rights reserved.