Module org.jooq
Package org.jooq

Interface Versions

All Superinterfaces:
Iterable<Version>

@Internal public interface Versions extends Iterable<Version>
A directed, acyclic graph of Version objects.

The graph is exposed as Iterable in no defined iteration order.

This is EXPERIMENTAL functionality and subject to change in future jOOQ versions.

Author:
Lukas Eder
  • Method Summary

    Modifier and Type
    Method
    Description
    @Nullable Version
    get​(String id)
    Find a version by its id, or null, if no such version was found.
    @NotNull Version
    The root version of this graph.

    Methods inherited from interface java.lang.Iterable

    forEach, iterator, spliterator
  • Method Details

    • root

      @NotNull @NotNull Version root()
      The root version of this graph.
    • get

      @Nullable @Nullable Version get(String id)
      Find a version by its id, or null, if no such version was found.