Class EntityInstanceDao
java.lang.Object
org.jooq.impl.DAOImpl<EntityInstanceRecord,EntityInstance,org.jooq.Record2<Integer,Long>>
org.trustdeck.jooq.generated.tables.daos.EntityInstanceDao
- All Implemented Interfaces:
org.jooq.DAO<EntityInstanceRecord,EntityInstance, org.jooq.Record2<Integer, Long>>
public class EntityInstanceDao
extends org.jooq.impl.DAOImpl<EntityInstanceRecord,EntityInstance,org.jooq.Record2<Integer,Long>>
This class is generated by jOOQ.
-
Constructor Summary
ConstructorsConstructorDescriptionCreate a new EntityInstanceDao without any configurationEntityInstanceDao(org.jooq.Configuration configuration) Create a new EntityInstanceDao with an attached configuration -
Method Summary
Modifier and TypeMethodDescriptionfetchByCreatedAt(OffsetDateTime... values) Fetch records that havecreated_at IN (values)fetchByData(org.jooq.JSONB... values) Fetch records that havedata IN (values)fetchByDataSha256(byte[]... values) Fetch records that havedata_sha256 IN (values)fetchByDataText(String... values) Fetch records that havedata_text IN (values)fetchByEntityTypeId(Integer... values) Fetch records that haveentity_type_id IN (values)fetchByFullTextSearchVector(Object... values) Deprecated.Unknown data type.Fetch records that haveid IN (values)fetchByIsDeleted(Boolean... values) Fetch records that haveis_deleted IN (values)fetchByProjectId(Integer... values) Fetch records that haveproject_id IN (values)fetchByTrustdeckId(UUID... values) Fetch records that havetrustdeck_id IN (values)fetchByUpdatedAt(OffsetDateTime... values) Fetch records that haveupdated_at IN (values)fetchRangeOfCreatedAt(OffsetDateTime lowerInclusive, OffsetDateTime upperInclusive) Fetch records that havecreated_at BETWEEN lowerInclusive AND upperInclusivefetchRangeOfData(org.jooq.JSONB lowerInclusive, org.jooq.JSONB upperInclusive) Fetch records that havedata BETWEEN lowerInclusive AND upperInclusivefetchRangeOfDataSha256(byte[] lowerInclusive, byte[] upperInclusive) Fetch records that havedata_sha256 BETWEEN lowerInclusive AND upperInclusivefetchRangeOfDataText(String lowerInclusive, String upperInclusive) Fetch records that havedata_text BETWEEN lowerInclusive AND upperInclusivefetchRangeOfEntityTypeId(Integer lowerInclusive, Integer upperInclusive) Fetch records that haveentity_type_id BETWEEN lowerInclusive AND upperInclusivefetchRangeOfFullTextSearchVector(Object lowerInclusive, Object upperInclusive) Deprecated.Unknown data type.fetchRangeOfId(Long lowerInclusive, Long upperInclusive) Fetch records that haveid BETWEEN lowerInclusive AND upperInclusivefetchRangeOfIsDeleted(Boolean lowerInclusive, Boolean upperInclusive) Fetch records that haveis_deleted BETWEEN lowerInclusive AND upperInclusivefetchRangeOfProjectId(Integer lowerInclusive, Integer upperInclusive) Fetch records that haveproject_id BETWEEN lowerInclusive AND upperInclusivefetchRangeOfTrustdeckId(UUID lowerInclusive, UUID upperInclusive) Fetch records that havetrustdeck_id BETWEEN lowerInclusive AND upperInclusivefetchRangeOfUpdatedAt(OffsetDateTime lowerInclusive, OffsetDateTime upperInclusive) Fetch records that haveupdated_at BETWEEN lowerInclusive AND upperInclusivegetId(EntityInstance object) Methods inherited from class org.jooq.impl.DAOImpl
compositeKeyRecord, configuration, count, ctx, delete, delete, delete, deleteById, deleteById, deleteById, dialect, exists, existsById, family, fetch, fetch, fetchOne, fetchOptional, fetchRange, findAll, findById, findOptionalById, getTable, getType, insert, insert, insert, mapper, merge, merge, merge, setConfiguration, settings, update, update, update
-
Constructor Details
-
EntityInstanceDao
public EntityInstanceDao()Create a new EntityInstanceDao without any configuration -
EntityInstanceDao
public EntityInstanceDao(org.jooq.Configuration configuration) Create a new EntityInstanceDao with an attached configuration
-
-
Method Details
-
getId
-
fetchRangeOfId
Fetch records that haveid BETWEEN lowerInclusive AND upperInclusive -
fetchById
Fetch records that haveid IN (values) -
fetchRangeOfTrustdeckId
Fetch records that havetrustdeck_id BETWEEN lowerInclusive AND upperInclusive -
fetchByTrustdeckId
Fetch records that havetrustdeck_id IN (values) -
fetchRangeOfProjectId
Fetch records that haveproject_id BETWEEN lowerInclusive AND upperInclusive -
fetchByProjectId
Fetch records that haveproject_id IN (values) -
fetchRangeOfEntityTypeId
public List<EntityInstance> fetchRangeOfEntityTypeId(Integer lowerInclusive, Integer upperInclusive) Fetch records that haveentity_type_id BETWEEN lowerInclusive AND upperInclusive -
fetchByEntityTypeId
Fetch records that haveentity_type_id IN (values) -
fetchRangeOfData
public List<EntityInstance> fetchRangeOfData(org.jooq.JSONB lowerInclusive, org.jooq.JSONB upperInclusive) Fetch records that havedata BETWEEN lowerInclusive AND upperInclusive -
fetchByData
Fetch records that havedata IN (values) -
fetchRangeOfFullTextSearchVector
@Deprecated public List<EntityInstance> fetchRangeOfFullTextSearchVector(Object lowerInclusive, Object upperInclusive) Deprecated.Unknown data type. If this is a qualified, user-defined type, it may have been excluded from code generation. If this is a built-in type, you can define an explicitBindingto specify how this type should be handled. Deprecation can be turned off using <deprecationOnUnknownTypes/> in your code generator configuration. -
fetchByFullTextSearchVector
Deprecated.Unknown data type. If this is a qualified, user-defined type, it may have been excluded from code generation. If this is a built-in type, you can define an explicitBindingto specify how this type should be handled. Deprecation can be turned off using <deprecationOnUnknownTypes/> in your code generator configuration. -
fetchRangeOfDataText
Fetch records that havedata_text BETWEEN lowerInclusive AND upperInclusive -
fetchByDataText
Fetch records that havedata_text IN (values) -
fetchRangeOfDataSha256
Fetch records that havedata_sha256 BETWEEN lowerInclusive AND upperInclusive -
fetchByDataSha256
Fetch records that havedata_sha256 IN (values) -
fetchRangeOfIsDeleted
Fetch records that haveis_deleted BETWEEN lowerInclusive AND upperInclusive -
fetchByIsDeleted
Fetch records that haveis_deleted IN (values) -
fetchRangeOfCreatedAt
public List<EntityInstance> fetchRangeOfCreatedAt(OffsetDateTime lowerInclusive, OffsetDateTime upperInclusive) Fetch records that havecreated_at BETWEEN lowerInclusive AND upperInclusive -
fetchByCreatedAt
Fetch records that havecreated_at IN (values) -
fetchRangeOfUpdatedAt
public List<EntityInstance> fetchRangeOfUpdatedAt(OffsetDateTime lowerInclusive, OffsetDateTime upperInclusive) Fetch records that haveupdated_at BETWEEN lowerInclusive AND upperInclusive -
fetchByUpdatedAt
Fetch records that haveupdated_at IN (values)
-