| Package | Description |
|---|---|
| cn.vertxup.ambient.domain.tables.daos | |
| cn.vertxup.ambient.domain.tables.pojos | |
| io.vertx.tp.ambient.refine |
| Modifier and Type | Method and Description |
|---|---|
XNumber |
XNumberDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<XNumber> |
XNumberDao.fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<XNumber>> |
XNumberDao.fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<XNumber> |
XNumberDao.fetchByAppId(String... values)
Fetch records that have
APP_ID IN (values) |
CompletableFuture<List<XNumber>> |
XNumberDao.fetchByAppIdAsync(List<String> values)
Fetch records that have
APP_ID IN (values) asynchronously |
List<XNumber> |
XNumberDao.fetchByCode(String... values)
Fetch records that have
CODE IN (values) |
CompletableFuture<List<XNumber>> |
XNumberDao.fetchByCodeAsync(List<String> values)
Fetch records that have
CODE IN (values) asynchronously |
List<XNumber> |
XNumberDao.fetchByComment(String... values)
Fetch records that have
COMMENT IN (values) |
CompletableFuture<List<XNumber>> |
XNumberDao.fetchByCommentAsync(List<String> values)
Fetch records that have
COMMENT IN (values) asynchronously |
List<XNumber> |
XNumberDao.fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<XNumber>> |
XNumberDao.fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<XNumber> |
XNumberDao.fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<XNumber>> |
XNumberDao.fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<XNumber> |
XNumberDao.fetchByCurrent(Long... values)
Fetch records that have
CURRENT IN (values) |
CompletableFuture<List<XNumber>> |
XNumberDao.fetchByCurrentAsync(List<Long> values)
Fetch records that have
CURRENT IN (values) asynchronously |
List<XNumber> |
XNumberDao.fetchByDecrement(Boolean... values)
Fetch records that have
DECREMENT IN (values) |
CompletableFuture<List<XNumber>> |
XNumberDao.fetchByDecrementAsync(List<Boolean> values)
Fetch records that have
DECREMENT IN (values) asynchronously |
List<XNumber> |
XNumberDao.fetchByFormat(String... values)
Fetch records that have
FORMAT IN (values) |
CompletableFuture<List<XNumber>> |
XNumberDao.fetchByFormatAsync(List<String> values)
Fetch records that have
FORMAT IN (values) asynchronously |
List<XNumber> |
XNumberDao.fetchByIdentifier(String... values)
Fetch records that have
IDENTIFIER IN (values) |
CompletableFuture<List<XNumber>> |
XNumberDao.fetchByIdentifierAsync(List<String> values)
Fetch records that have
IDENTIFIER IN (values) asynchronously |
List<XNumber> |
XNumberDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<XNumber>> |
XNumberDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<XNumber> |
XNumberDao.fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<XNumber>> |
XNumberDao.fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<XNumber> |
XNumberDao.fetchByLength(Integer... values)
Fetch records that have
LENGTH IN (values) |
CompletableFuture<List<XNumber>> |
XNumberDao.fetchByLengthAsync(List<Integer> values)
Fetch records that have
LENGTH IN (values) asynchronously |
List<XNumber> |
XNumberDao.fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<XNumber>> |
XNumberDao.fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<XNumber> |
XNumberDao.fetchByPrefix(String... values)
Fetch records that have
PREFIX IN (values) |
CompletableFuture<List<XNumber>> |
XNumberDao.fetchByPrefixAsync(List<String> values)
Fetch records that have
PREFIX IN (values) asynchronously |
List<XNumber> |
XNumberDao.fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<XNumber>> |
XNumberDao.fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<XNumber> |
XNumberDao.fetchByStep(Integer... values)
Fetch records that have
STEP IN (values) |
CompletableFuture<List<XNumber>> |
XNumberDao.fetchByStepAsync(List<Integer> values)
Fetch records that have
STEP IN (values) asynchronously |
List<XNumber> |
XNumberDao.fetchBySuffix(String... values)
Fetch records that have
SUFFIX IN (values) |
CompletableFuture<List<XNumber>> |
XNumberDao.fetchBySuffixAsync(List<String> values)
Fetch records that have
SUFFIX IN (values) asynchronously |
List<XNumber> |
XNumberDao.fetchByTime(String... values)
Fetch records that have
TIME IN (values) |
CompletableFuture<List<XNumber>> |
XNumberDao.fetchByTimeAsync(List<String> values)
Fetch records that have
TIME IN (values) asynchronously |
List<XNumber> |
XNumberDao.fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<XNumber>> |
XNumberDao.fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<XNumber> |
XNumberDao.fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<XNumber>> |
XNumberDao.fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
CompletableFuture<XNumber> |
XNumberDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
XNumberDao.getId(XNumber object) |
| Constructor and Description |
|---|
XNumber(XNumber value) |
| Modifier and Type | Method and Description |
|---|---|
static List<String> |
At.serials(XNumber number,
Integer count) |
static io.vertx.core.Future<List<String>> |
At.serialsAsync(XNumber number,
Integer count) |
Copyright © 2021. All rights reserved.