@Generated(value={"http://www.jooq.org","jOOQ version:3.10.8"}, comments="This class is generated by jOOQ") public class MEntityDao extends org.jooq.impl.DAOImpl<MEntityRecord,MEntity,String> implements io.github.jklingsporn.vertx.jooq.future.VertxDAO<MEntityRecord,MEntity,String>
This class is generated by jOOQ.
| Constructor and Description |
|---|
MEntityDao()
Create a new MEntityDao without any configuration
|
MEntityDao(org.jooq.Configuration configuration)
Create a new MEntityDao with an attached configuration
|
| Modifier and Type | Method and Description |
|---|---|
List<MEntity> |
fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<MEntity>> |
fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<MEntity> |
fetchByComments(String... values)
Fetch records that have
COMMENTS IN (values) |
CompletableFuture<List<MEntity>> |
fetchByCommentsAsync(List<String> values)
Fetch records that have
COMMENTS IN (values) asynchronously |
List<MEntity> |
fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<MEntity>> |
fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<MEntity> |
fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<MEntity>> |
fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<MEntity> |
fetchByIdentifier(String... values)
Fetch records that have
IDENTIFIER IN (values) |
CompletableFuture<List<MEntity>> |
fetchByIdentifierAsync(List<String> values)
Fetch records that have
IDENTIFIER IN (values) asynchronously |
List<MEntity> |
fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<MEntity>> |
fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<MEntity> |
fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<MEntity>> |
fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<MEntity> |
fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<MEntity>> |
fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<MEntity> |
fetchByName(String... values)
Fetch records that have
NAME IN (values) |
CompletableFuture<List<MEntity>> |
fetchByNameAsync(List<String> values)
Fetch records that have
NAME IN (values) asynchronously |
List<MEntity> |
fetchByNamespace(String... values)
Fetch records that have
NAMESPACE IN (values) |
CompletableFuture<List<MEntity>> |
fetchByNamespaceAsync(List<String> values)
Fetch records that have
NAMESPACE IN (values) asynchronously |
List<MEntity> |
fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<MEntity>> |
fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<MEntity> |
fetchByTableName(String... values)
Fetch records that have
TABLE_NAME IN (values) |
CompletableFuture<List<MEntity>> |
fetchByTableNameAsync(List<String> values)
Fetch records that have
TABLE_NAME IN (values) asynchronously |
List<MEntity> |
fetchByType(String... values)
Fetch records that have
TYPE IN (values) |
CompletableFuture<List<MEntity>> |
fetchByTypeAsync(List<String> values)
Fetch records that have
TYPE IN (values) asynchronously |
List<MEntity> |
fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<MEntity>> |
fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<MEntity> |
fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<MEntity>> |
fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
MEntity |
fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
CompletableFuture<MEntity> |
fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
protected String |
getId(MEntity object) |
void |
setVertx(io.vertx.core.Vertx vertx) |
io.vertx.core.Vertx |
vertx() |
compositeKeyRecord, configuration, count, delete, delete, delete, deleteById, deleteById, dialect, exists, existsById, family, fetch, fetchOne, fetchOptional, findAll, findById, getTable, getType, insert, insert, insert, mapper, setConfiguration, settings, update, update, updateclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitcountAsync, deleteAsync, deleteByIdAsync, deleteByIdAsync, deleteExecAsync, deleteExecAsync, deleteExecAsync, executeAsync, existsAsync, existsByIdAsync, fetchAsync, fetchAsync, fetchOneAsync, fetchOneAsync, fetchOptionalAsync, findAllAsync, findByIdAsync, insertAsync, insertAsync, insertExecAsync, insertReturningPrimaryAsync, updateAsync, updateAsync, updateExecAsyncpublic MEntityDao()
Create a new MEntityDao without any configuration
public MEntityDao(org.jooq.Configuration configuration)
Create a new MEntityDao with an attached configuration
protected String getId(MEntity object)
getId in class org.jooq.impl.DAOImpl<MEntityRecord,MEntity,String>public List<MEntity> fetchByKey(String... values)
Fetch records that have KEY IN (values)
public List<MEntity> fetchByIdentifier(String... values)
Fetch records that have IDENTIFIER IN (values)
public List<MEntity> fetchByNamespace(String... values)
Fetch records that have NAMESPACE IN (values)
public List<MEntity> fetchByName(String... values)
Fetch records that have NAME IN (values)
public List<MEntity> fetchByType(String... values)
Fetch records that have TYPE IN (values)
public List<MEntity> fetchByTableName(String... values)
Fetch records that have TABLE_NAME IN (values)
public List<MEntity> fetchByComments(String... values)
Fetch records that have COMMENTS IN (values)
public List<MEntity> fetchBySigma(String... values)
Fetch records that have SIGMA IN (values)
public List<MEntity> fetchByLanguage(String... values)
Fetch records that have LANGUAGE IN (values)
public List<MEntity> fetchByActive(Boolean... values)
Fetch records that have ACTIVE IN (values)
public List<MEntity> fetchByMetadata(String... values)
Fetch records that have METADATA IN (values)
public List<MEntity> fetchByCreatedAt(LocalDateTime... values)
Fetch records that have CREATED_AT IN (values)
public List<MEntity> fetchByCreatedBy(String... values)
Fetch records that have CREATED_BY IN (values)
public List<MEntity> fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have UPDATED_AT IN (values)
public List<MEntity> fetchByUpdatedBy(String... values)
Fetch records that have UPDATED_BY IN (values)
public CompletableFuture<List<MEntity>> fetchByKeyAsync(List<String> values)
Fetch records that have KEY IN (values) asynchronously
public CompletableFuture<MEntity> fetchOneByKeyAsync(String value)
Fetch a unique record that has KEY = value asynchronously
public CompletableFuture<List<MEntity>> fetchByIdentifierAsync(List<String> values)
Fetch records that have IDENTIFIER IN (values) asynchronously
public CompletableFuture<List<MEntity>> fetchByNamespaceAsync(List<String> values)
Fetch records that have NAMESPACE IN (values) asynchronously
public CompletableFuture<List<MEntity>> fetchByNameAsync(List<String> values)
Fetch records that have NAME IN (values) asynchronously
public CompletableFuture<List<MEntity>> fetchByTypeAsync(List<String> values)
Fetch records that have TYPE IN (values) asynchronously
public CompletableFuture<List<MEntity>> fetchByTableNameAsync(List<String> values)
Fetch records that have TABLE_NAME IN (values) asynchronously
public CompletableFuture<List<MEntity>> fetchByCommentsAsync(List<String> values)
Fetch records that have COMMENTS IN (values) asynchronously
public CompletableFuture<List<MEntity>> fetchBySigmaAsync(List<String> values)
Fetch records that have SIGMA IN (values) asynchronously
public CompletableFuture<List<MEntity>> fetchByLanguageAsync(List<String> values)
Fetch records that have LANGUAGE IN (values) asynchronously
public CompletableFuture<List<MEntity>> fetchByActiveAsync(List<Boolean> values)
Fetch records that have ACTIVE IN (values) asynchronously
public CompletableFuture<List<MEntity>> fetchByMetadataAsync(List<String> values)
Fetch records that have METADATA IN (values) asynchronously
public CompletableFuture<List<MEntity>> fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have CREATED_AT IN (values) asynchronously
public CompletableFuture<List<MEntity>> fetchByCreatedByAsync(List<String> values)
Fetch records that have CREATED_BY IN (values) asynchronously
public CompletableFuture<List<MEntity>> fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have UPDATED_AT IN (values) asynchronously
public CompletableFuture<List<MEntity>> fetchByUpdatedByAsync(List<String> values)
Fetch records that have UPDATED_BY IN (values) asynchronously
public void setVertx(io.vertx.core.Vertx vertx)
setVertx in interface io.github.jklingsporn.vertx.jooq.future.VertxDAO<MEntityRecord,MEntity,String>public io.vertx.core.Vertx vertx()
vertx in interface io.github.jklingsporn.vertx.jooq.future.VertxDAO<MEntityRecord,MEntity,String>Copyright © 2021. All rights reserved.