| Package | Description |
|---|---|
| cn.vertxup.graphic.domain.tables.daos | |
| cn.vertxup.graphic.domain.tables.pojos |
| Modifier and Type | Method and Description |
|---|---|
GNode |
GNodeDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<GNode> |
GNodeDao.fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<GNode>> |
GNodeDao.fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<GNode> |
GNodeDao.fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<GNode>> |
GNodeDao.fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<GNode> |
GNodeDao.fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<GNode>> |
GNodeDao.fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<GNode> |
GNodeDao.fetchByGraphicId(String... values)
Fetch records that have
GRAPHIC_ID IN (values) |
CompletableFuture<List<GNode>> |
GNodeDao.fetchByGraphicIdAsync(List<String> values)
Fetch records that have
GRAPHIC_ID IN (values) asynchronously |
List<GNode> |
GNodeDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<GNode>> |
GNodeDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<GNode> |
GNodeDao.fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<GNode>> |
GNodeDao.fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<GNode> |
GNodeDao.fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<GNode>> |
GNodeDao.fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<GNode> |
GNodeDao.fetchByName(String... values)
Fetch records that have
NAME IN (values) |
CompletableFuture<List<GNode>> |
GNodeDao.fetchByNameAsync(List<String> values)
Fetch records that have
NAME IN (values) asynchronously |
List<GNode> |
GNodeDao.fetchByRecordClass(String... values)
Fetch records that have
RECORD_CLASS IN (values) |
CompletableFuture<List<GNode>> |
GNodeDao.fetchByRecordClassAsync(List<String> values)
Fetch records that have
RECORD_CLASS IN (values) asynchronously |
List<GNode> |
GNodeDao.fetchByRecordComponent(String... values)
Fetch records that have
RECORD_COMPONENT IN (values) |
CompletableFuture<List<GNode>> |
GNodeDao.fetchByRecordComponentAsync(List<String> values)
Fetch records that have
RECORD_COMPONENT IN (values) asynchronously |
List<GNode> |
GNodeDao.fetchByRecordData(String... values)
Fetch records that have
RECORD_DATA IN (values) |
CompletableFuture<List<GNode>> |
GNodeDao.fetchByRecordDataAsync(List<String> values)
Fetch records that have
RECORD_DATA IN (values) asynchronously |
List<GNode> |
GNodeDao.fetchByRecordKey(String... values)
Fetch records that have
RECORD_KEY IN (values) |
CompletableFuture<List<GNode>> |
GNodeDao.fetchByRecordKeyAsync(List<String> values)
Fetch records that have
RECORD_KEY IN (values) asynchronously |
List<GNode> |
GNodeDao.fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<GNode>> |
GNodeDao.fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<GNode> |
GNodeDao.fetchByUi(String... values)
Fetch records that have
UI IN (values) |
CompletableFuture<List<GNode>> |
GNodeDao.fetchByUiAsync(List<String> values)
Fetch records that have
UI IN (values) asynchronously |
List<GNode> |
GNodeDao.fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<GNode>> |
GNodeDao.fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<GNode> |
GNodeDao.fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<GNode>> |
GNodeDao.fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
List<GNode> |
GNodeDao.fetchByX(BigDecimal... values)
Fetch records that have
X IN (values) |
CompletableFuture<List<GNode>> |
GNodeDao.fetchByXAsync(List<BigDecimal> values)
Fetch records that have
X IN (values) asynchronously |
List<GNode> |
GNodeDao.fetchByY(BigDecimal... values)
Fetch records that have
Y IN (values) |
CompletableFuture<List<GNode>> |
GNodeDao.fetchByYAsync(List<BigDecimal> values)
Fetch records that have
Y IN (values) asynchronously |
CompletableFuture<GNode> |
GNodeDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
GNodeDao.getId(GNode object) |
| Modifier and Type | Method and Description |
|---|---|
GNode |
GNode.setActive(Boolean active) |
GNode |
GNode.setCreatedAt(LocalDateTime createdAt) |
GNode |
GNode.setCreatedBy(String createdBy) |
GNode |
GNode.setGraphicId(String graphicId) |
GNode |
GNode.setKey(String key) |
GNode |
GNode.setLanguage(String language) |
GNode |
GNode.setMetadata(String metadata) |
GNode |
GNode.setName(String name) |
GNode |
GNode.setRecordClass(String recordClass) |
GNode |
GNode.setRecordComponent(String recordComponent) |
GNode |
GNode.setRecordData(String recordData) |
GNode |
GNode.setRecordKey(String recordKey) |
GNode |
GNode.setSigma(String sigma) |
GNode |
GNode.setUi(String ui) |
GNode |
GNode.setUpdatedAt(LocalDateTime updatedAt) |
GNode |
GNode.setUpdatedBy(String updatedBy) |
GNode |
GNode.setX(BigDecimal x) |
GNode |
GNode.setY(BigDecimal y) |
| Constructor and Description |
|---|
GNode(GNode value) |
Copyright © 2020. All rights reserved.