Module org.jooq
Package org.jooq

Interface Dependencies


public interface Dependencies
A representation of the object dependencies between the various objects in a Meta object collection.

Unqualified table references are looked up using Settings.getInterpreterSearchPath().

This is a commercial jOOQ edition only feature.

Author:
Lukas Eder
  • Method Summary

    Modifier and Type
    Method
    Description
    @NotNull Set<Table<?>>
    viewTables(Table<?> view)
    The direct table dependencies of a view.
    @NotNull Set<Table<?>>
    The and transitive table dependencies of a view.
  • Method Details

    • viewTables

      @NotNull @NotNull Set<Table<?>> viewTables(Table<?> view)
      The direct table dependencies of a view.
    • viewTablesTransitive

      @NotNull @NotNull Set<Table<?>> viewTablesTransitive(Table<?> view)
      The and transitive table dependencies of a view.