| Package | Description |
|---|---|
| cn.vertxup.graphic.domain.tables.daos | |
| cn.vertxup.graphic.domain.tables.pojos |
| Modifier and Type | Method and Description |
|---|---|
GEdge |
GEdgeDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<GEdge> |
GEdgeDao.fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<GEdge>> |
GEdgeDao.fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<GEdge> |
GEdgeDao.fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<GEdge>> |
GEdgeDao.fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<GEdge> |
GEdgeDao.fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<GEdge>> |
GEdgeDao.fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<GEdge> |
GEdgeDao.fetchByGraphicId(String... values)
Fetch records that have
GRAPHIC_ID IN (values) |
CompletableFuture<List<GEdge>> |
GEdgeDao.fetchByGraphicIdAsync(List<String> values)
Fetch records that have
GRAPHIC_ID IN (values) asynchronously |
List<GEdge> |
GEdgeDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<GEdge>> |
GEdgeDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<GEdge> |
GEdgeDao.fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<GEdge>> |
GEdgeDao.fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<GEdge> |
GEdgeDao.fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<GEdge>> |
GEdgeDao.fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<GEdge> |
GEdgeDao.fetchByName(String... values)
Fetch records that have
NAME IN (values) |
CompletableFuture<List<GEdge>> |
GEdgeDao.fetchByNameAsync(List<String> values)
Fetch records that have
NAME IN (values) asynchronously |
List<GEdge> |
GEdgeDao.fetchByRecordData(String... values)
Fetch records that have
RECORD_DATA IN (values) |
CompletableFuture<List<GEdge>> |
GEdgeDao.fetchByRecordDataAsync(List<String> values)
Fetch records that have
RECORD_DATA IN (values) asynchronously |
List<GEdge> |
GEdgeDao.fetchByRecordKey(String... values)
Fetch records that have
RECORD_KEY IN (values) |
CompletableFuture<List<GEdge>> |
GEdgeDao.fetchByRecordKeyAsync(List<String> values)
Fetch records that have
RECORD_KEY IN (values) asynchronously |
List<GEdge> |
GEdgeDao.fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<GEdge>> |
GEdgeDao.fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<GEdge> |
GEdgeDao.fetchBySourceKey(String... values)
Fetch records that have
SOURCE_KEY IN (values) |
CompletableFuture<List<GEdge>> |
GEdgeDao.fetchBySourceKeyAsync(List<String> values)
Fetch records that have
SOURCE_KEY IN (values) asynchronously |
List<GEdge> |
GEdgeDao.fetchByTargetKey(String... values)
Fetch records that have
TARGET_KEY IN (values) |
CompletableFuture<List<GEdge>> |
GEdgeDao.fetchByTargetKeyAsync(List<String> values)
Fetch records that have
TARGET_KEY IN (values) asynchronously |
List<GEdge> |
GEdgeDao.fetchByType(String... values)
Fetch records that have
TYPE IN (values) |
CompletableFuture<List<GEdge>> |
GEdgeDao.fetchByTypeAsync(List<String> values)
Fetch records that have
TYPE IN (values) asynchronously |
List<GEdge> |
GEdgeDao.fetchByUi(String... values)
Fetch records that have
UI IN (values) |
CompletableFuture<List<GEdge>> |
GEdgeDao.fetchByUiAsync(List<String> values)
Fetch records that have
UI IN (values) asynchronously |
List<GEdge> |
GEdgeDao.fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<GEdge>> |
GEdgeDao.fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<GEdge> |
GEdgeDao.fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<GEdge>> |
GEdgeDao.fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
CompletableFuture<GEdge> |
GEdgeDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
GEdgeDao.getId(GEdge object) |
| Modifier and Type | Method and Description |
|---|---|
GEdge |
GEdge.setActive(Boolean active) |
GEdge |
GEdge.setCreatedAt(LocalDateTime createdAt) |
GEdge |
GEdge.setCreatedBy(String createdBy) |
GEdge |
GEdge.setGraphicId(String graphicId) |
GEdge |
GEdge.setKey(String key) |
GEdge |
GEdge.setLanguage(String language) |
GEdge |
GEdge.setMetadata(String metadata) |
GEdge |
GEdge.setName(String name) |
GEdge |
GEdge.setRecordData(String recordData) |
GEdge |
GEdge.setRecordKey(String recordKey) |
GEdge |
GEdge.setSigma(String sigma) |
GEdge |
GEdge.setSourceKey(String sourceKey) |
GEdge |
GEdge.setTargetKey(String targetKey) |
GEdge |
GEdge.setType(String type) |
GEdge |
GEdge.setUi(String ui) |
GEdge |
GEdge.setUpdatedAt(LocalDateTime updatedAt) |
GEdge |
GEdge.setUpdatedBy(String updatedBy) |
| Constructor and Description |
|---|
GEdge(GEdge value) |
Copyright © 2020. All rights reserved.