Uses of Interface
org.jooq.Path
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of Path in org.jooq
Modifier and TypeMethodDescriptionPolicy.inherited()
The paths from child tables toPolicy.table()
, which inherit this policy.Modifier and TypeMethodDescription@NotNull SelectOptionalOnStep<R>
SelectJoinStep.fullHashJoin
(Path<?> table) Convenience method toFULL OUTER JOIN
a path to the last table added to theFROM
clause usingTable.fullOuterHashJoin(Path)
.@NotNull TableOptionalOnStep<Record>
Table.fullHashJoin
(Path<?> path) FULL OUTER JOIN
a path to this table with aQOM.JoinHint.HASH
hint.@NotNull SelectOptionalOnStep<R>
Convenience method toFULL OUTER JOIN
a path to the last table added to theFROM
clause usingTable.fullOuterJoin(Path)
.@NotNull TableOptionalOnStep<Record>
FULL OUTER JOIN
a path to this table.@NotNull SelectOptionalOnStep<R>
SelectJoinStep.fullLoopJoin
(Path<?> table) Convenience method toFULL OUTER JOIN
a path to the last table added to theFROM
clause usingTable.fullOuterLoopJoin(Path)
.@NotNull TableOptionalOnStep<Record>
Table.fullLoopJoin
(Path<?> path) FULL OUTER JOIN
a path to this table with aQOM.JoinHint.LOOP
hint.@NotNull SelectOptionalOnStep<R>
SelectJoinStep.fullMergeJoin
(Path<?> table) Convenience method toFULL OUTER JOIN
a path to the last table added to theFROM
clause usingTable.fullOuterMergeJoin(Path)
.@NotNull TableOptionalOnStep<Record>
Table.fullMergeJoin
(Path<?> path) FULL OUTER JOIN
a path to this table with aQOM.JoinHint.MERGE
hint.@NotNull SelectOptionalOnStep<R>
SelectJoinStep.fullOuterHashJoin
(Path<?> table) Convenience method toFULL OUTER JOIN
a path to the last table added to theFROM
clause usingTable.fullOuterHashJoin(Path)
@NotNull TableOptionalOnStep<Record>
Table.fullOuterHashJoin
(Path<?> path) FULL OUTER JOIN
a path to this table with aQOM.JoinHint.HASH
hint.@NotNull SelectOptionalOnStep<R>
SelectJoinStep.fullOuterJoin
(Path<?> table) Convenience method toFULL OUTER JOIN
a path to the last table added to theFROM
clause usingTable.fullOuterJoin(Path)
@NotNull TableOptionalOnStep<Record>
Table.fullOuterJoin
(Path<?> path) FULL OUTER JOIN
a path to this table.@NotNull SelectOptionalOnStep<R>
SelectJoinStep.fullOuterLoopJoin
(Path<?> table) Convenience method toFULL OUTER JOIN
a path to the last table added to theFROM
clause usingTable.fullOuterLoopJoin(Path)
@NotNull TableOptionalOnStep<Record>
Table.fullOuterLoopJoin
(Path<?> path) FULL OUTER JOIN
a path to this table with aQOM.JoinHint.LOOP
hint.@NotNull SelectOptionalOnStep<R>
SelectJoinStep.fullOuterMergeJoin
(Path<?> table) Convenience method toFULL OUTER JOIN
a path to the last table added to theFROM
clause usingTable.fullOuterMergeJoin(Path)
@NotNull TableOptionalOnStep<Record>
Table.fullOuterMergeJoin
(Path<?> path) FULL OUTER JOIN
a path to this table with aQOM.JoinHint.MERGE
hint.@NotNull SelectOptionalOnStep<R>
Convenience method toINNER JOIN
a path to the last table added to theFROM
clause usingTable.hashJoin(Path)
.@NotNull TableOptionalOnStep<Record>
INNER JOIN
a path to this table with aQOM.JoinHint.HASH
hint.@NotNull SelectOptionalOnStep<R>
SelectJoinStep.innerHashJoin
(Path<?> path) Convenience method toINNER JOIN
a path to the last table added to theFROM
clause usingTable.innerHashJoin(Path)
.@NotNull TableOptionalOnStep<Record>
Table.innerHashJoin
(Path<?> path) INNER JOIN
a path to this table with aQOM.JoinHint.HASH
hint.@NotNull SelectOptionalOnStep<R>
Convenience method toINNER JOIN
a path to the last table added to theFROM
clause usingTable.join(Path)
.@NotNull TableOptionalOnStep<Record>
INNER JOIN
a path to this table.@NotNull SelectOptionalOnStep<R>
SelectJoinStep.innerLoopJoin
(Path<?> path) Convenience method toINNER JOIN
a path to the last table added to theFROM
clause usingTable.innerLoopJoin(Path)
.@NotNull TableOptionalOnStep<Record>
Table.innerLoopJoin
(Path<?> path) INNER JOIN
a path to this table with aQOM.JoinHint.LOOP
hint.@NotNull SelectOptionalOnStep<R>
SelectJoinStep.innerMergeJoin
(Path<?> path) Convenience method toINNER JOIN
a path to the last table added to theFROM
clause usingTable.innerMergeJoin(Path)
.@NotNull TableOptionalOnStep<Record>
Table.innerMergeJoin
(Path<?> path) INNER JOIN
a path to this table with aQOM.JoinHint.MERGE
hint.@NotNull SelectOptionalOnStep<R>
Convenience method toINNER JOIN
a path to the last table added to theFROM
clause usingTable.join(Path)
.@NotNull TableOptionalOnStep<Record>
INNER JOIN
a path to this table.@NotNull SelectOptionalOnStep<R>
SelectJoinStep.leftAntiJoin
(Path<?> path) A syntheticLEFT ANTI JOIN
clause that translates to an equivalentNOT EXISTS
predicate.@NotNull TableOptionalOnStep<R>
Table.leftAntiJoin
(Path<?> path) A syntheticLEFT ANTI JOIN
clause that translates to an equivalentNOT EXISTS
predicate.@NotNull SelectOptionalOnStep<R>
SelectJoinStep.leftHashJoin
(Path<?> table) Convenience method toLEFT OUTER JOIN
a path to the last table added to theFROM
clause usingTable.leftOuterHashJoin(Path)
.@NotNull TableOptionalOnStep<Record>
Table.leftHashJoin
(Path<?> path) LEFT OUTER JOIN
a path to this table with aQOM.JoinHint.HASH
hint.@NotNull SelectOptionalOnStep<R>
Convenience method toLEFT OUTER JOIN
a path to the last table added to theFROM
clause usingTable.leftOuterJoin(Path)
.@NotNull TableOptionalOnStep<Record>
LEFT OUTER JOIN
a path to this table.@NotNull SelectOptionalOnStep<R>
SelectJoinStep.leftLoopJoin
(Path<?> table) Convenience method toLEFT OUTER JOIN
a path to the last table added to theFROM
clause usingTable.leftOuterLoopJoin(Path)
.@NotNull TableOptionalOnStep<Record>
Table.leftLoopJoin
(Path<?> path) LEFT OUTER JOIN
a path to this table with aQOM.JoinHint.LOOP
hint.@NotNull SelectOptionalOnStep<R>
SelectJoinStep.leftMergeJoin
(Path<?> table) Convenience method toLEFT OUTER JOIN
a path to the last table added to theFROM
clause usingTable.leftOuterMergeJoin(Path)
.@NotNull TableOptionalOnStep<Record>
Table.leftMergeJoin
(Path<?> path) LEFT OUTER JOIN
a path to this table with aQOM.JoinHint.MERGE
hint.@NotNull SelectOptionalOnStep<R>
SelectJoinStep.leftOuterHashJoin
(Path<?> path) Convenience method toLEFT OUTER JOIN
a path to the last table added to theFROM
clause usingTable.leftOuterHashJoin(Path)
@NotNull TableOptionalOnStep<Record>
Table.leftOuterHashJoin
(Path<?> path) LEFT OUTER JOIN
a path to this table with aQOM.JoinHint.HASH
hint.@NotNull SelectOptionalOnStep<R>
SelectJoinStep.leftOuterJoin
(Path<?> path) Convenience method toLEFT OUTER JOIN
a path to the last table added to theFROM
clause usingTable.leftOuterJoin(Path)
@NotNull TableOptionalOnStep<Record>
Table.leftOuterJoin
(Path<?> path) LEFT OUTER JOIN
a path to this table.@NotNull SelectOptionalOnStep<R>
SelectJoinStep.leftOuterLoopJoin
(Path<?> path) Convenience method toLEFT OUTER JOIN
a path to the last table added to theFROM
clause usingTable.leftOuterLoopJoin(Path)
@NotNull TableOptionalOnStep<Record>
Table.leftOuterLoopJoin
(Path<?> path) LEFT OUTER JOIN
a path to this table with aQOM.JoinHint.LOOP
hint.@NotNull SelectOptionalOnStep<R>
SelectJoinStep.leftOuterMergeJoin
(Path<?> path) Convenience method toLEFT OUTER JOIN
a path to the last table added to theFROM
clause usingTable.leftOuterMergeJoin(Path)
@NotNull TableOptionalOnStep<Record>
Table.leftOuterMergeJoin
(Path<?> path) LEFT OUTER JOIN
a path to this table with aQOM.JoinHint.MERGE
hint.@NotNull SelectOptionalOnStep<R>
SelectJoinStep.leftSemiJoin
(Path<?> path) A syntheticLEFT SEMI JOIN
clause that translates to an equivalentEXISTS
predicate.@NotNull TableOptionalOnStep<R>
Table.leftSemiJoin
(Path<?> path) A syntheticLEFT SEMI JOIN
clause that translates to an equivalentEXISTS
predicate.@NotNull SelectOptionalOnStep<R>
Convenience method toINNER JOIN
a path to the last table added to theFROM
clause usingTable.loopJoin(Path)
.@NotNull TableOptionalOnStep<Record>
INNER JOIN
a path to this table with aQOM.JoinHint.LOOP
hint.@NotNull SelectOptionalOnStep<R>
Convenience method toINNER JOIN
a path to the last table added to theFROM
clause usingTable.mergeJoin(Path)
.@NotNull TableOptionalOnStep<Record>
INNER JOIN
a path to this table with aQOM.JoinHint.MERGE
hint.@NotNull SelectOptionalOnStep<R>
SelectJoinStep.rightHashJoin
(Path<?> path) Convenience method toRIGHT OUTER JOIN
a path to the last table added to theFROM
clause usingTable.rightOuterHashJoin(Path)
.@NotNull TableOptionalOnStep<Record>
Table.rightHashJoin
(Path<?> path) RIGHT OUTER JOIN
a path to this table with aQOM.JoinHint.HASH
hint.@NotNull SelectOptionalOnStep<R>
Convenience method toRIGHT OUTER JOIN
a path to the last table added to theFROM
clause usingTable.rightOuterJoin(Path)
.@NotNull TableOptionalOnStep<Record>
RIGHT OUTER JOIN
a path to this table.@NotNull SelectOptionalOnStep<R>
SelectJoinStep.rightLoopJoin
(Path<?> path) Convenience method toRIGHT OUTER JOIN
a path to the last table added to theFROM
clause usingTable.rightOuterLoopJoin(Path)
.@NotNull TableOptionalOnStep<Record>
Table.rightLoopJoin
(Path<?> path) RIGHT OUTER JOIN
a path to this table with aQOM.JoinHint.LOOP
hint.@NotNull SelectOptionalOnStep<R>
SelectJoinStep.rightMergeJoin
(Path<?> path) Convenience method toRIGHT OUTER JOIN
a path to the last table added to theFROM
clause usingTable.rightOuterMergeJoin(Path)
.@NotNull TableOptionalOnStep<Record>
Table.rightMergeJoin
(Path<?> path) RIGHT OUTER JOIN
a path to this table with aQOM.JoinHint.MERGE
hint.@NotNull SelectOptionalOnStep<R>
SelectJoinStep.rightOuterHashJoin
(Path<?> path) Convenience method toRIGHT OUTER JOIN
a path to the last table added to theFROM
clause usingTable.rightOuterHashJoin(Path)
@NotNull TableOptionalOnStep<Record>
Table.rightOuterHashJoin
(Path<?> path) RIGHT OUTER JOIN
a path to this table with aQOM.JoinHint.HASH
hint.@NotNull SelectOptionalOnStep<R>
SelectJoinStep.rightOuterJoin
(Path<?> path) Convenience method toRIGHT OUTER JOIN
a path to the last table added to theFROM
clause usingTable.rightOuterJoin(Path)
@NotNull TableOptionalOnStep<Record>
Table.rightOuterJoin
(Path<?> path) RIGHT OUTER JOIN
a path to this table.@NotNull SelectOptionalOnStep<R>
SelectJoinStep.rightOuterLoopJoin
(Path<?> path) Convenience method toRIGHT OUTER JOIN
a path to the last table added to theFROM
clause usingTable.rightOuterLoopJoin(Path)
@NotNull TableOptionalOnStep<Record>
Table.rightOuterLoopJoin
(Path<?> path) RIGHT OUTER JOIN
a path to this table with aQOM.JoinHint.LOOP
hint.@NotNull SelectOptionalOnStep<R>
SelectJoinStep.rightOuterMergeJoin
(Path<?> path) Convenience method toRIGHT OUTER JOIN
a path to the last table added to theFROM
clause usingTable.rightOuterMergeJoin(Path)
@NotNull TableOptionalOnStep<Record>
Table.rightOuterMergeJoin
(Path<?> path) RIGHT OUTER JOIN
a path to this table with aQOM.JoinHint.MERGE
hint.@NotNull SelectOnStep<R>
SelectJoinStep.straightJoin
(Path<?> table) STRAIGHT_JOIN
a path to this table.@NotNull TableOptionalOnStep<Record>
Table.straightJoin
(Path<?> path) STRAIGHT_JOIN
a path to this table. -
Uses of Path in org.jooq.impl
Modifier and TypeMethodDescriptionfinal <R extends Record>
DefaultPolicyProviderAdd aPolicy
for aPolicy.table()
andPolicy.condition()
as well as a set ofPolicy.inherited()
paths.Modifier and TypeMethodDescriptionfinal <R extends Record>
DefaultPolicyProviderDefaultPolicyProvider.append
(Table<R> table, Condition condition, Collection<? extends Path<R>> inherited) Add aPolicy
for aPolicy.table()
andPolicy.condition()
as well as a set ofPolicy.inherited()
paths.