Uses of Interface
org.seasar.doma.jdbc.criteria.statement.EntityQueryable
Packages that use EntityQueryable
-
Uses of EntityQueryable in org.seasar.doma.jdbc.criteria.statement
Classes in org.seasar.doma.jdbc.criteria.statement that implement EntityQueryableModifier and TypeClassDescriptionclassUnifiedSelectStarting<ENTITY>Represents a SELECT statement starting point.classUnifiedSelectTerminal<ENTITY>Represents a SELECT statement terminal.Methods in org.seasar.doma.jdbc.criteria.statement that return EntityQueryableModifier and TypeMethodDescription<ENTITY1,ENTITY2>
EntityQueryable<ENTITY>EntityQueryable.associate(EntityMetamodel<ENTITY1> first, EntityMetamodel<ENTITY2> second, BiConsumer<ENTITY1, ENTITY2> associator) Associates the entities.<ENTITY1,ENTITY2>
EntityQueryable<ENTITY>EntityQueryable.associate(EntityMetamodel<ENTITY1> first, EntityMetamodel<ENTITY2> second, BiConsumer<ENTITY1, ENTITY2> associator, AssociationOption option) Associates the entities with the option.<ENTITY1,ENTITY2>
EntityQueryable<ENTITY>UnifiedSelectStarting.associate(EntityMetamodel<ENTITY1> first, EntityMetamodel<ENTITY2> second, BiConsumer<ENTITY1, ENTITY2> associator) <ENTITY1,ENTITY2>
EntityQueryable<ENTITY>UnifiedSelectStarting.associate(EntityMetamodel<ENTITY1> first, EntityMetamodel<ENTITY2> second, BiConsumer<ENTITY1, ENTITY2> associator, AssociationOption option) <ENTITY1,ENTITY2>
EntityQueryable<ENTITY>UnifiedSelectTerminal.associate(EntityMetamodel<ENTITY1> first, EntityMetamodel<ENTITY2> second, BiConsumer<ENTITY1, ENTITY2> associator) <ENTITY1,ENTITY2>
EntityQueryable<ENTITY>UnifiedSelectTerminal.associate(EntityMetamodel<ENTITY1> first, EntityMetamodel<ENTITY2> second, BiConsumer<ENTITY1, ENTITY2> associator, AssociationOption option) <ENTITY1,ENTITY2>
EntityQueryable<ENTITY>EntityQueryable.associateWith(EntityMetamodel<ENTITY1> first, EntityMetamodel<ENTITY2> second, BiFunction<ENTITY1, ENTITY2, ENTITY1> associator) Associates the immutable entities.<ENTITY1,ENTITY2>
EntityQueryable<ENTITY>EntityQueryable.associateWith(EntityMetamodel<ENTITY1> first, EntityMetamodel<ENTITY2> second, BiFunction<ENTITY1, ENTITY2, ENTITY1> associator, AssociationOption option) Associates the immutable entities with the option.<ENTITY1,ENTITY2>
EntityQueryable<ENTITY>UnifiedSelectStarting.associateWith(EntityMetamodel<ENTITY1> first, EntityMetamodel<ENTITY2> second, BiFunction<ENTITY1, ENTITY2, ENTITY1> associator) <ENTITY1,ENTITY2>
EntityQueryable<ENTITY>UnifiedSelectStarting.associateWith(EntityMetamodel<ENTITY1> first, EntityMetamodel<ENTITY2> second, BiFunction<ENTITY1, ENTITY2, ENTITY1> associator, AssociationOption option) <ENTITY1,ENTITY2>
EntityQueryable<ENTITY>UnifiedSelectTerminal.associateWith(EntityMetamodel<ENTITY1> first, EntityMetamodel<ENTITY2> second, BiFunction<ENTITY1, ENTITY2, ENTITY1> associator) <ENTITY1,ENTITY2>
EntityQueryable<ENTITY>UnifiedSelectTerminal.associateWith(EntityMetamodel<ENTITY1> first, EntityMetamodel<ENTITY2> second, BiFunction<ENTITY1, ENTITY2, ENTITY1> associator, AssociationOption option) EntityQueryable.distinct()Specifies the distinct keyword.EntityQueryable.distinct(DistinctOption distinctOption) Specifies the distinct keyword with the specified option.UnifiedSelectTerminal.distinct()UnifiedSelectTerminal.distinct(DistinctOption distinctOption) EntityQueryable.forUpdate()Specifies the for update clause.EntityQueryable.forUpdate(ForUpdateOption option) Specifies the for update clause with the specified option.UnifiedSelectTerminal.forUpdate()UnifiedSelectTerminal.forUpdate(ForUpdateOption option) EntityQueryable.innerJoin(EntityMetamodel<?> entityMetamodel, Consumer<JoinDeclaration> block) Specifies the inner join clause.UnifiedSelectTerminal.innerJoin(EntityMetamodel<?> entityMetamodel, Consumer<JoinDeclaration> block) EntityQueryable.leftJoin(EntityMetamodel<?> entityMetamodel, Consumer<JoinDeclaration> block) Specifies the left join clause.UnifiedSelectTerminal.leftJoin(EntityMetamodel<?> entityMetamodel, Consumer<JoinDeclaration> block) Specifies the limit clause.Specifies the offset clause.EntityQueryable.orderBy(Consumer<OrderByNameDeclaration> block) Specifies the order by clause.UnifiedSelectTerminal.orderBy(Consumer<OrderByNameDeclaration> block) EntityQueryable.where(Consumer<WhereDeclaration> block) Specifies the where clause.UnifiedSelectTerminal.where(Consumer<WhereDeclaration> block)