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