| Package | Description |
|---|---|
| cn.vertxup.ui.domain.tables.daos | |
| cn.vertxup.ui.domain.tables.pojos |
| Modifier and Type | Method and Description |
|---|---|
UiOp |
UiOpDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<UiOp> |
UiOpDao.fetchByAction(String... values)
Fetch records that have
ACTION IN (values) |
CompletableFuture<List<UiOp>> |
UiOpDao.fetchByActionAsync(List<String> values)
Fetch records that have
ACTION IN (values) asynchronously |
List<UiOp> |
UiOpDao.fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<UiOp>> |
UiOpDao.fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<UiOp> |
UiOpDao.fetchByClientId(String... values)
Fetch records that have
CLIENT_ID IN (values) |
CompletableFuture<List<UiOp>> |
UiOpDao.fetchByClientIdAsync(List<String> values)
Fetch records that have
CLIENT_ID IN (values) asynchronously |
List<UiOp> |
UiOpDao.fetchByClientKey(String... values)
Fetch records that have
CLIENT_KEY IN (values) |
CompletableFuture<List<UiOp>> |
UiOpDao.fetchByClientKeyAsync(List<String> values)
Fetch records that have
CLIENT_KEY IN (values) asynchronously |
List<UiOp> |
UiOpDao.fetchByConfig(String... values)
Fetch records that have
CONFIG IN (values) |
CompletableFuture<List<UiOp>> |
UiOpDao.fetchByConfigAsync(List<String> values)
Fetch records that have
CONFIG IN (values) asynchronously |
List<UiOp> |
UiOpDao.fetchByControlId(String... values)
Fetch records that have
CONTROL_ID IN (values) |
CompletableFuture<List<UiOp>> |
UiOpDao.fetchByControlIdAsync(List<String> values)
Fetch records that have
CONTROL_ID IN (values) asynchronously |
List<UiOp> |
UiOpDao.fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<UiOp>> |
UiOpDao.fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<UiOp> |
UiOpDao.fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<UiOp>> |
UiOpDao.fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<UiOp> |
UiOpDao.fetchByEvent(String... values)
Fetch records that have
EVENT IN (values) |
CompletableFuture<List<UiOp>> |
UiOpDao.fetchByEventAsync(List<String> values)
Fetch records that have
EVENT IN (values) asynchronously |
List<UiOp> |
UiOpDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<UiOp>> |
UiOpDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<UiOp> |
UiOpDao.fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<UiOp>> |
UiOpDao.fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<UiOp> |
UiOpDao.fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<UiOp>> |
UiOpDao.fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<UiOp> |
UiOpDao.fetchByPlugin(String... values)
Fetch records that have
PLUGIN IN (values) |
CompletableFuture<List<UiOp>> |
UiOpDao.fetchByPluginAsync(List<String> values)
Fetch records that have
PLUGIN IN (values) asynchronously |
List<UiOp> |
UiOpDao.fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<UiOp>> |
UiOpDao.fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<UiOp> |
UiOpDao.fetchByText(String... values)
Fetch records that have
TEXT IN (values) |
CompletableFuture<List<UiOp>> |
UiOpDao.fetchByTextAsync(List<String> values)
Fetch records that have
TEXT IN (values) asynchronously |
List<UiOp> |
UiOpDao.fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<UiOp>> |
UiOpDao.fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<UiOp> |
UiOpDao.fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<UiOp>> |
UiOpDao.fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
CompletableFuture<UiOp> |
UiOpDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
UiOpDao.getId(UiOp object) |
| Modifier and Type | Method and Description |
|---|---|
UiOp |
UiOp.setAction(String action) |
UiOp |
UiOp.setActive(Boolean active) |
UiOp |
UiOp.setClientId(String clientId) |
UiOp |
UiOp.setClientKey(String clientKey) |
UiOp |
UiOp.setConfig(String config) |
UiOp |
UiOp.setControlId(String controlId) |
UiOp |
UiOp.setCreatedAt(LocalDateTime createdAt) |
UiOp |
UiOp.setCreatedBy(String createdBy) |
UiOp |
UiOp.setEvent(String event) |
UiOp |
UiOp.setKey(String key) |
UiOp |
UiOp.setLanguage(String language) |
UiOp |
UiOp.setMetadata(String metadata) |
UiOp |
UiOp.setPlugin(String plugin) |
UiOp |
UiOp.setSigma(String sigma) |
UiOp |
UiOp.setText(String text) |
UiOp |
UiOp.setUpdatedAt(LocalDateTime updatedAt) |
UiOp |
UiOp.setUpdatedBy(String updatedBy) |
| Constructor and Description |
|---|
UiOp(UiOp value) |
Copyright © 2021. All rights reserved.