| Package | Description |
|---|---|
| cn.vertxup.atom.domain.tables.daos | |
| cn.vertxup.atom.domain.tables.pojos | |
| io.vertx.tp.atom.modeling | |
| io.vertx.tp.optic.modeling |
| Modifier and Type | Method and Description |
|---|---|
MModel |
MModelDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<MModel> |
MModelDao.fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<MModel>> |
MModelDao.fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<MModel> |
MModelDao.fetchByAlias(String... values)
Fetch records that have
ALIAS IN (values) |
CompletableFuture<List<MModel>> |
MModelDao.fetchByAliasAsync(List<String> values)
Fetch records that have
ALIAS IN (values) asynchronously |
List<MModel> |
MModelDao.fetchByCategoryId(String... values)
Fetch records that have
CATEGORY_ID IN (values) |
CompletableFuture<List<MModel>> |
MModelDao.fetchByCategoryIdAsync(List<String> values)
Fetch records that have
CATEGORY_ID IN (values) asynchronously |
List<MModel> |
MModelDao.fetchByCategoryTree(String... values)
Fetch records that have
CATEGORY_TREE IN (values) |
CompletableFuture<List<MModel>> |
MModelDao.fetchByCategoryTreeAsync(List<String> values)
Fetch records that have
CATEGORY_TREE IN (values) asynchronously |
List<MModel> |
MModelDao.fetchByComments(String... values)
Fetch records that have
COMMENTS IN (values) |
CompletableFuture<List<MModel>> |
MModelDao.fetchByCommentsAsync(List<String> values)
Fetch records that have
COMMENTS IN (values) asynchronously |
List<MModel> |
MModelDao.fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<MModel>> |
MModelDao.fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<MModel> |
MModelDao.fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<MModel>> |
MModelDao.fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<MModel> |
MModelDao.fetchByIdentifier(String... values)
Fetch records that have
IDENTIFIER IN (values) |
CompletableFuture<List<MModel>> |
MModelDao.fetchByIdentifierAsync(List<String> values)
Fetch records that have
IDENTIFIER IN (values) asynchronously |
List<MModel> |
MModelDao.fetchByIsTrack(Boolean... values)
Fetch records that have
IS_TRACK IN (values) |
CompletableFuture<List<MModel>> |
MModelDao.fetchByIsTrackAsync(List<Boolean> values)
Fetch records that have
IS_TRACK IN (values) asynchronously |
List<MModel> |
MModelDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<MModel>> |
MModelDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<MModel> |
MModelDao.fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<MModel>> |
MModelDao.fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<MModel> |
MModelDao.fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<MModel>> |
MModelDao.fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<MModel> |
MModelDao.fetchByName(String... values)
Fetch records that have
NAME IN (values) |
CompletableFuture<List<MModel>> |
MModelDao.fetchByNameAsync(List<String> values)
Fetch records that have
NAME IN (values) asynchronously |
List<MModel> |
MModelDao.fetchByNamespace(String... values)
Fetch records that have
NAMESPACE IN (values) |
CompletableFuture<List<MModel>> |
MModelDao.fetchByNamespaceAsync(List<String> values)
Fetch records that have
NAMESPACE IN (values) asynchronously |
List<MModel> |
MModelDao.fetchByRuleUnique(String... values)
Fetch records that have
RULE_UNIQUE IN (values) |
CompletableFuture<List<MModel>> |
MModelDao.fetchByRuleUniqueAsync(List<String> values)
Fetch records that have
RULE_UNIQUE IN (values) asynchronously |
List<MModel> |
MModelDao.fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<MModel>> |
MModelDao.fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<MModel> |
MModelDao.fetchBySpider(String... values)
Fetch records that have
SPIDER IN (values) |
CompletableFuture<List<MModel>> |
MModelDao.fetchBySpiderAsync(List<String> values)
Fetch records that have
SPIDER IN (values) asynchronously |
List<MModel> |
MModelDao.fetchBySpiderComponent(String... values)
Fetch records that have
SPIDER_COMPONENT IN (values) |
CompletableFuture<List<MModel>> |
MModelDao.fetchBySpiderComponentAsync(List<String> values)
Fetch records that have
SPIDER_COMPONENT IN (values) asynchronously |
List<MModel> |
MModelDao.fetchByType(String... values)
Fetch records that have
TYPE IN (values) |
CompletableFuture<List<MModel>> |
MModelDao.fetchByTypeAsync(List<String> values)
Fetch records that have
TYPE IN (values) asynchronously |
List<MModel> |
MModelDao.fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<MModel>> |
MModelDao.fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<MModel> |
MModelDao.fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<MModel>> |
MModelDao.fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
CompletableFuture<MModel> |
MModelDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
MModelDao.getId(MModel object) |
| Constructor and Description |
|---|
MModel(MModel value) |
| Modifier and Type | Method and Description |
|---|---|
MModel |
Model.getModel() |
| Modifier and Type | Method and Description |
|---|---|
MModel |
JsonModel.getModel() |
Copyright © 2020. All rights reserved.