| Package | Description |
|---|---|
| cn.vertxup.atom.domain.tables.daos | |
| cn.vertxup.atom.domain.tables.pojos |
| Modifier and Type | Method and Description |
|---|---|
MIndex |
MIndexDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<MIndex> |
MIndexDao.fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<MIndex>> |
MIndexDao.fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<MIndex> |
MIndexDao.fetchByClustered(Boolean... values)
Fetch records that have
CLUSTERED IN (values) |
CompletableFuture<List<MIndex>> |
MIndexDao.fetchByClusteredAsync(List<Boolean> values)
Fetch records that have
CLUSTERED IN (values) asynchronously |
List<MIndex> |
MIndexDao.fetchByColumns(String... values)
Fetch records that have
COLUMNS IN (values) |
CompletableFuture<List<MIndex>> |
MIndexDao.fetchByColumnsAsync(List<String> values)
Fetch records that have
COLUMNS IN (values) asynchronously |
List<MIndex> |
MIndexDao.fetchByComments(String... values)
Fetch records that have
COMMENTS IN (values) |
CompletableFuture<List<MIndex>> |
MIndexDao.fetchByCommentsAsync(List<String> values)
Fetch records that have
COMMENTS IN (values) asynchronously |
List<MIndex> |
MIndexDao.fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<MIndex>> |
MIndexDao.fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<MIndex> |
MIndexDao.fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<MIndex>> |
MIndexDao.fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<MIndex> |
MIndexDao.fetchByEntityId(String... values)
Fetch records that have
ENTITY_ID IN (values) |
CompletableFuture<List<MIndex>> |
MIndexDao.fetchByEntityIdAsync(List<String> values)
Fetch records that have
ENTITY_ID IN (values) asynchronously |
List<MIndex> |
MIndexDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<MIndex>> |
MIndexDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<MIndex> |
MIndexDao.fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<MIndex>> |
MIndexDao.fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<MIndex> |
MIndexDao.fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<MIndex>> |
MIndexDao.fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<MIndex> |
MIndexDao.fetchByName(String... values)
Fetch records that have
NAME IN (values) |
CompletableFuture<List<MIndex>> |
MIndexDao.fetchByNameAsync(List<String> values)
Fetch records that have
NAME IN (values) asynchronously |
List<MIndex> |
MIndexDao.fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<MIndex>> |
MIndexDao.fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<MIndex> |
MIndexDao.fetchByType(String... values)
Fetch records that have
TYPE IN (values) |
CompletableFuture<List<MIndex>> |
MIndexDao.fetchByTypeAsync(List<String> values)
Fetch records that have
TYPE IN (values) asynchronously |
List<MIndex> |
MIndexDao.fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<MIndex>> |
MIndexDao.fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<MIndex> |
MIndexDao.fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<MIndex>> |
MIndexDao.fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
CompletableFuture<MIndex> |
MIndexDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
MIndexDao.getId(MIndex object) |
| Modifier and Type | Method and Description |
|---|---|
MIndex |
MIndex.setActive(Boolean active) |
MIndex |
MIndex.setClustered(Boolean clustered) |
MIndex |
MIndex.setColumns(String columns) |
MIndex |
MIndex.setComments(String comments) |
MIndex |
MIndex.setCreatedAt(LocalDateTime createdAt) |
MIndex |
MIndex.setCreatedBy(String createdBy) |
MIndex |
MIndex.setEntityId(String entityId) |
MIndex |
MIndex.setKey(String key) |
MIndex |
MIndex.setLanguage(String language) |
MIndex |
MIndex.setMetadata(String metadata) |
MIndex |
MIndex.setName(String name) |
MIndex |
MIndex.setSigma(String sigma) |
MIndex |
MIndex.setType(String type) |
MIndex |
MIndex.setUpdatedAt(LocalDateTime updatedAt) |
MIndex |
MIndex.setUpdatedBy(String updatedBy) |
| Constructor and Description |
|---|
MIndex(MIndex value) |
Copyright © 2020. All rights reserved.