| Package | Description |
|---|---|
| cn.vertxup.atom.domain.tables.daos | |
| cn.vertxup.atom.domain.tables.pojos |
| Modifier and Type | Method and Description |
|---|---|
MRelation |
MRelationDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<MRelation> |
MRelationDao.fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<MRelation>> |
MRelationDao.fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<MRelation> |
MRelationDao.fetchByComments(String... values)
Fetch records that have
COMMENTS IN (values) |
CompletableFuture<List<MRelation>> |
MRelationDao.fetchByCommentsAsync(List<String> values)
Fetch records that have
COMMENTS IN (values) asynchronously |
List<MRelation> |
MRelationDao.fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<MRelation>> |
MRelationDao.fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<MRelation> |
MRelationDao.fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<MRelation>> |
MRelationDao.fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<MRelation> |
MRelationDao.fetchByDownstream(String... values)
Fetch records that have
DOWNSTREAM IN (values) |
CompletableFuture<List<MRelation>> |
MRelationDao.fetchByDownstreamAsync(List<String> values)
Fetch records that have
DOWNSTREAM IN (values) asynchronously |
List<MRelation> |
MRelationDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<MRelation>> |
MRelationDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<MRelation> |
MRelationDao.fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<MRelation>> |
MRelationDao.fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<MRelation> |
MRelationDao.fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<MRelation>> |
MRelationDao.fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<MRelation> |
MRelationDao.fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<MRelation>> |
MRelationDao.fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<MRelation> |
MRelationDao.fetchByType(String... values)
Fetch records that have
TYPE IN (values) |
CompletableFuture<List<MRelation>> |
MRelationDao.fetchByTypeAsync(List<String> values)
Fetch records that have
TYPE IN (values) asynchronously |
List<MRelation> |
MRelationDao.fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<MRelation>> |
MRelationDao.fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<MRelation> |
MRelationDao.fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<MRelation>> |
MRelationDao.fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
List<MRelation> |
MRelationDao.fetchByUpstream(String... values)
Fetch records that have
UPSTREAM IN (values) |
CompletableFuture<List<MRelation>> |
MRelationDao.fetchByUpstreamAsync(List<String> values)
Fetch records that have
UPSTREAM IN (values) asynchronously |
CompletableFuture<MRelation> |
MRelationDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
MRelationDao.getId(MRelation object) |
| Modifier and Type | Method and Description |
|---|---|
MRelation |
MRelation.setActive(Boolean active) |
MRelation |
MRelation.setComments(String comments) |
MRelation |
MRelation.setCreatedAt(LocalDateTime createdAt) |
MRelation |
MRelation.setCreatedBy(String createdBy) |
MRelation |
MRelation.setDownstream(String downstream) |
MRelation |
MRelation.setKey(String key) |
MRelation |
MRelation.setLanguage(String language) |
MRelation |
MRelation.setMetadata(String metadata) |
MRelation |
MRelation.setSigma(String sigma) |
MRelation |
MRelation.setType(String type) |
MRelation |
MRelation.setUpdatedAt(LocalDateTime updatedAt) |
MRelation |
MRelation.setUpdatedBy(String updatedBy) |
MRelation |
MRelation.setUpstream(String upstream) |
| Constructor and Description |
|---|
MRelation(MRelation value) |
Copyright © 2021. All rights reserved.