@Generated(value={"http://www.jooq.org","jOOQ version:3.10.8"}, comments="This class is generated by jOOQ") public class MRelationDao extends org.jooq.impl.DAOImpl<MRelationRecord,MRelation,String> implements io.github.jklingsporn.vertx.jooq.future.VertxDAO<MRelationRecord,MRelation,String>
This class is generated by jOOQ.
| Constructor and Description |
|---|
MRelationDao()
Create a new MRelationDao without any configuration
|
MRelationDao(org.jooq.Configuration configuration)
Create a new MRelationDao with an attached configuration
|
| Modifier and Type | Method and Description |
|---|---|
List<MRelation> |
fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<MRelation>> |
fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<MRelation> |
fetchByComments(String... values)
Fetch records that have
COMMENTS IN (values) |
CompletableFuture<List<MRelation>> |
fetchByCommentsAsync(List<String> values)
Fetch records that have
COMMENTS IN (values) asynchronously |
List<MRelation> |
fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<MRelation>> |
fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<MRelation> |
fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<MRelation>> |
fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<MRelation> |
fetchByDownstream(String... values)
Fetch records that have
DOWNSTREAM IN (values) |
CompletableFuture<List<MRelation>> |
fetchByDownstreamAsync(List<String> values)
Fetch records that have
DOWNSTREAM IN (values) asynchronously |
List<MRelation> |
fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<MRelation>> |
fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<MRelation> |
fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<MRelation>> |
fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<MRelation> |
fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<MRelation>> |
fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<MRelation> |
fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<MRelation>> |
fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<MRelation> |
fetchByType(String... values)
Fetch records that have
TYPE IN (values) |
CompletableFuture<List<MRelation>> |
fetchByTypeAsync(List<String> values)
Fetch records that have
TYPE IN (values) asynchronously |
List<MRelation> |
fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<MRelation>> |
fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<MRelation> |
fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<MRelation>> |
fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
List<MRelation> |
fetchByUpstream(String... values)
Fetch records that have
UPSTREAM IN (values) |
CompletableFuture<List<MRelation>> |
fetchByUpstreamAsync(List<String> values)
Fetch records that have
UPSTREAM IN (values) asynchronously |
MRelation |
fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
CompletableFuture<MRelation> |
fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
protected String |
getId(MRelation 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 MRelationDao()
Create a new MRelationDao without any configuration
public MRelationDao(org.jooq.Configuration configuration)
Create a new MRelationDao with an attached configuration
protected String getId(MRelation object)
getId in class org.jooq.impl.DAOImpl<MRelationRecord,MRelation,String>public List<MRelation> fetchByKey(String... values)
Fetch records that have KEY IN (values)
public MRelation fetchOneByKey(String value)
Fetch a unique record that has KEY = value
public List<MRelation> fetchByType(String... values)
Fetch records that have TYPE IN (values)
public List<MRelation> fetchByUpstream(String... values)
Fetch records that have UPSTREAM IN (values)
public List<MRelation> fetchByDownstream(String... values)
Fetch records that have DOWNSTREAM IN (values)
public List<MRelation> fetchByComments(String... values)
Fetch records that have COMMENTS IN (values)
public List<MRelation> fetchBySigma(String... values)
Fetch records that have SIGMA IN (values)
public List<MRelation> fetchByLanguage(String... values)
Fetch records that have LANGUAGE IN (values)
public List<MRelation> fetchByActive(Boolean... values)
Fetch records that have ACTIVE IN (values)
public List<MRelation> fetchByMetadata(String... values)
Fetch records that have METADATA IN (values)
public List<MRelation> fetchByCreatedAt(LocalDateTime... values)
Fetch records that have CREATED_AT IN (values)
public List<MRelation> fetchByCreatedBy(String... values)
Fetch records that have CREATED_BY IN (values)
public List<MRelation> fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have UPDATED_AT IN (values)
public List<MRelation> fetchByUpdatedBy(String... values)
Fetch records that have UPDATED_BY IN (values)
public CompletableFuture<List<MRelation>> fetchByKeyAsync(List<String> values)
Fetch records that have KEY IN (values) asynchronously
public CompletableFuture<MRelation> fetchOneByKeyAsync(String value)
Fetch a unique record that has KEY = value asynchronously
public CompletableFuture<List<MRelation>> fetchByTypeAsync(List<String> values)
Fetch records that have TYPE IN (values) asynchronously
public CompletableFuture<List<MRelation>> fetchByUpstreamAsync(List<String> values)
Fetch records that have UPSTREAM IN (values) asynchronously
public CompletableFuture<List<MRelation>> fetchByDownstreamAsync(List<String> values)
Fetch records that have DOWNSTREAM IN (values) asynchronously
public CompletableFuture<List<MRelation>> fetchByCommentsAsync(List<String> values)
Fetch records that have COMMENTS IN (values) asynchronously
public CompletableFuture<List<MRelation>> fetchBySigmaAsync(List<String> values)
Fetch records that have SIGMA IN (values) asynchronously
public CompletableFuture<List<MRelation>> fetchByLanguageAsync(List<String> values)
Fetch records that have LANGUAGE IN (values) asynchronously
public CompletableFuture<List<MRelation>> fetchByActiveAsync(List<Boolean> values)
Fetch records that have ACTIVE IN (values) asynchronously
public CompletableFuture<List<MRelation>> fetchByMetadataAsync(List<String> values)
Fetch records that have METADATA IN (values) asynchronously
public CompletableFuture<List<MRelation>> fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have CREATED_AT IN (values) asynchronously
public CompletableFuture<List<MRelation>> fetchByCreatedByAsync(List<String> values)
Fetch records that have CREATED_BY IN (values) asynchronously
public CompletableFuture<List<MRelation>> fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have UPDATED_AT IN (values) asynchronously
public CompletableFuture<List<MRelation>> 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<MRelationRecord,MRelation,String>public io.vertx.core.Vertx vertx()
vertx in interface io.github.jklingsporn.vertx.jooq.future.VertxDAO<MRelationRecord,MRelation,String>Copyright © 2020. All rights reserved.