Module org.jooq
Package org.jooq.impl

Interface QOM.AlterDomain<T>

All Superinterfaces:
Attachable, AttachableQueryPart, AutoCloseable, DDLQuery, Flow.Publisher<Integer>, Publisher<Integer>, org.reactivestreams.Publisher<Integer>, Query, QueryPart, RowCountQuery, Serializable, Statement
Enclosing class:
QOM

public static interface QOM.AlterDomain<T> extends DDLQuery
The ALTER DOMAIN statement.
  • Method Details

    • $domain

      @NotNull @NotNull Domain<T> $domain()
    • $ifExists

      boolean $ifExists()
    • $addConstraint

      @Nullable @Nullable Constraint $addConstraint()
    • $dropConstraint

      @Nullable @Nullable Constraint $dropConstraint()
    • $dropConstraintIfExists

      boolean $dropConstraintIfExists()
    • $renameTo

      @Nullable @Nullable Domain<?> $renameTo()
    • $renameConstraint

      @Nullable @Nullable Constraint $renameConstraint()
    • $renameConstraintIfExists

      boolean $renameConstraintIfExists()
    • $setDefault

      @Nullable @Nullable Field<T> $setDefault()
    • $dropDefault

      boolean $dropDefault()
    • $setNotNull

      boolean $setNotNull()
    • $dropNotNull

      boolean $dropNotNull()
    • $cascade

      @Nullable @Nullable QOM.Cascade $cascade()
    • $renameConstraintTo

      @Nullable @Nullable Constraint $renameConstraintTo()
    • $domain

      @NotNull @NotNull QOM.AlterDomain<T> $domain(Domain<T> domain)
    • $ifExists

      @NotNull @NotNull QOM.AlterDomain<T> $ifExists(boolean ifExists)
    • $addConstraint

      @NotNull @NotNull QOM.AlterDomain<T> $addConstraint(Constraint addConstraint)
    • $dropConstraint

      @NotNull @NotNull QOM.AlterDomain<T> $dropConstraint(Constraint dropConstraint)
    • $dropConstraintIfExists

      @NotNull @NotNull QOM.AlterDomain<T> $dropConstraintIfExists(boolean dropConstraintIfExists)
    • $renameTo

      @NotNull @NotNull QOM.AlterDomain<T> $renameTo(Domain<?> renameTo)
    • $renameConstraint

      @NotNull @NotNull QOM.AlterDomain<T> $renameConstraint(Constraint renameConstraint)
    • $renameConstraintIfExists

      @NotNull @NotNull QOM.AlterDomain<T> $renameConstraintIfExists(boolean renameConstraintIfExists)
    • $setDefault

      @NotNull @NotNull QOM.AlterDomain<T> $setDefault(Field<T> setDefault)
    • $dropDefault

      @NotNull @NotNull QOM.AlterDomain<T> $dropDefault(boolean dropDefault)
    • $setNotNull

      @NotNull @NotNull QOM.AlterDomain<T> $setNotNull(boolean setNotNull)
    • $dropNotNull

      @NotNull @NotNull QOM.AlterDomain<T> $dropNotNull(boolean dropNotNull)
    • $cascade

      @NotNull @NotNull QOM.AlterDomain<T> $cascade(QOM.Cascade cascade)
    • $renameConstraintTo

      @NotNull @NotNull QOM.AlterDomain<T> $renameConstraintTo(Constraint renameConstraintTo)