Module org.jooq
Package org.jooq.impl

Class Internal

java.lang.Object
org.jooq.impl.Internal

@Internal public final class Internal extends Object
A utility class that grants access to internal API, to be used only by generated code.

This type is for JOOQ INTERNAL USE only. Do not reference directly.

Author:
Lukas Eder
  • Method Details

    • createEmbeddable

      @SafeVarargs @NotNull public static final <R extends Record, E extends EmbeddableRecord<E>> @NotNull TableField<R,E> createEmbeddable(Name name, Class<E> recordType, Table<R> table, TableField<R,?>... fields)
      Factory method for embeddable types.
    • createEmbeddable

      @SafeVarargs @NotNull public static final <R extends Record, E extends EmbeddableRecord<E>> @NotNull TableField<R,E> createEmbeddable(Name name, Class<E> recordType, boolean replacesFields, Table<R> table, TableField<R,?>... fields)
      Factory method for embeddable types.
    • createIndex

      @NotNull public static final @NotNull Index createIndex(Name name, Table<?> table, OrderField<?>[] sortFields, boolean unique)
      Factory method for indexes.
    • createIdentity

      @NotNull public static final <R extends Record, T> @NotNull Identity<R,T> createIdentity(Table<R> table, TableField<R,T> field)
      Factory method for identities.
    • createUniqueKey

      @NotNull @SafeVarargs public static final <R extends Record> @NotNull UniqueKey<R> createUniqueKey(Table<R> table, TableField<R,?>... fields)
      Factory method for unique keys.
    • createUniqueKey

      @NotNull @SafeVarargs public static final <R extends Record> @NotNull UniqueKey<R> createUniqueKey(Table<R> table, Name name, TableField<R,?>... fields)
      Factory method for unique keys.
    • createUniqueKey

      @NotNull public static final <R extends Record> @NotNull UniqueKey<R> createUniqueKey(Table<R> table, Name name, TableField<R,?>[] fields, boolean enforced)
      Factory method for unique keys.
    • createUniqueKey

      @NotNull public static final <R extends Record, ER extends EmbeddableRecord<ER>> @NotNull UniqueKey<R> createUniqueKey(Table<R> table, Name name, TableField<R,ER> embeddableField, boolean enforced)
      Factory method for unique keys.
    • createForeignKey

      @Deprecated @NotNull @SafeVarargs public static final <R extends Record, U extends Record> @NotNull ForeignKey<R,U> createForeignKey(UniqueKey<U> key, Table<R> table, TableField<R,?>... fields)
      Deprecated.
      - 3.14.0 - [#9404] - Please re-generate your code.
      Factory method for foreign keys.
    • createForeignKey

      @NotNull public static final <R extends Record, U extends Record> @NotNull ForeignKey<R,U> createForeignKey(Table<R> table, Name name, TableField<R,?>[] fkFields, UniqueKey<U> uk, TableField<U,?>[] ukFields, boolean enforced)
      Factory method for foreign keys.
    • createForeignKey

      @NotNull public static final <R extends Record, U extends Record, ER extends EmbeddableRecord<ER>> @NotNull ForeignKey<R,U> createForeignKey(Table<R> table, Name name, TableField<R,ER> fkEmbeddableField, UniqueKey<U> uk, TableField<U,ER> ukEmbeddableField, boolean enforced)
      Factory method for foreign keys.
    • createSequence

      @NotNull public static final <T extends Number> @NotNull Sequence<T> createSequence(String name, Schema schema, DataType<T> type)
      Factory method for sequences.
    • createSequence

      @NotNull public static final <T extends Number> @NotNull Sequence<T> createSequence(String name, Schema schema, DataType<T> type, Number startWith, Number incrementBy, Number minvalue, Number maxvalue, boolean cycle, Number cache)
      Factory method for sequences.
    • createCheck

      @NotNull public static final <R extends Record> @NotNull Check<R> createCheck(Table<R> table, Name name, String condition)
      Factory method for check constraints.
    • createCheck

      @NotNull public static final <R extends Record> @NotNull Check<R> createCheck(Table<R> table, Name name, String condition, boolean enforced)
      Factory method for check constraints.
    • createDomain

      @NotNull public static final <T> @NotNull Domain<T> createDomain(Schema schema, Name name, DataType<T> type, Check<?>... checks)
      Factory method for domain specifications.
    • createPathAlias

      @NotNull public static final @NotNull Name createPathAlias(Table<?> child, ForeignKey<?,?> path)
      Factory method for path aliases.
    • createParameter

      @NotNull public static final <T> @NotNull Parameter<T> createParameter(String name, DataType<T> type, boolean isDefaulted, boolean isUnnamed)
      Factory method for parameters.
    • createParameter

      @NotNull public static final <T, U> @NotNull Parameter<U> createParameter(String name, DataType<T> type, boolean isDefaulted, boolean isUnnamed, Converter<T,U> converter)
      Factory method for parameters.
    • createParameter

      @NotNull public static final <T, U> @NotNull Parameter<U> createParameter(String name, DataType<T> type, boolean isDefaulted, boolean isUnnamed, Binding<T,U> binding)
      Factory method for parameters.
    • createParameter

      @NotNull public static final <T, X, U> @NotNull Parameter<U> createParameter(String name, DataType<T> type, boolean isDefaulted, boolean isUnnamed, Converter<X,U> converter, Binding<T,X> binding)
      Factory method for parameters.
    • createQueue

      @NotNull @Pro public static final <R extends UDTRecord<R>> @NotNull Queue<R> createQueue(String name, Schema schema, UDT<R> type)
    • createIndex

      @NotNull @Deprecated(since="3.14", forRemoval=true) public static final @NotNull Index createIndex(String name, Table<?> table, OrderField<?>[] sortFields, boolean unique)
      Deprecated, for removal: This API element is subject to removal in a future version.
      - 3.14.0 - [#9404] - Please re-generate your code.
      Factory method for indexes.
    • createUniqueKey

      @NotNull @SafeVarargs @Deprecated(since="3.14", forRemoval=true) public static final <R extends Record> @NotNull UniqueKey<R> createUniqueKey(Table<R> table, String name, TableField<R,?>... fields)
      Deprecated, for removal: This API element is subject to removal in a future version.
      - 3.14.0 - [#9404] - Please re-generate your code.
      Factory method for unique keys.
    • createUniqueKey

      @NotNull @Deprecated(since="3.14", forRemoval=true) public static final <R extends Record> @NotNull UniqueKey<R> createUniqueKey(Table<R> table, String name, TableField<R,?>[] fields, boolean enforced)
      Deprecated, for removal: This API element is subject to removal in a future version.
      - 3.14.0 - [#9404] - Please re-generate your code.
      Factory method for unique keys.
    • createForeignKey

      @NotNull @SafeVarargs @Deprecated(since="3.14", forRemoval=true) public static final <R extends Record, U extends Record> @NotNull ForeignKey<R,U> createForeignKey(UniqueKey<U> key, Table<R> table, String name, TableField<R,?>... fields)
      Deprecated, for removal: This API element is subject to removal in a future version.
      - 3.14.0 - [#9404] - Please re-generate your code.
      Factory method for foreign keys.
    • createForeignKey

      @NotNull @Deprecated(since="3.14", forRemoval=true) public static final <R extends Record, U extends Record> @NotNull ForeignKey<R,U> createForeignKey(UniqueKey<U> key, Table<R> table, String name, TableField<R,?>[] fields, boolean enforced)
      Deprecated, for removal: This API element is subject to removal in a future version.
      - 3.14.0 - [#9404] - Please re-generate your code.
      Factory method for foreign keys.
    • fields

      @NotNull @Deprecated(since="3.14", forRemoval=true) public static final <R extends Record, ER extends EmbeddableRecord<ER>> @NotNull TableField<R,?>[] fields(TableField<R,ER> embeddableField)
      Deprecated, for removal: This API element is subject to removal in a future version.
      - [#11058] - 3.14.5 - Please re-generate your code.
      Get the fields of an embeddable type.
    • fieldsRow

      @NotNull @Deprecated(since="3.16", forRemoval=true) public static final <R extends Record, ER extends EmbeddableRecord<ER>> @NotNull Row fieldsRow(TableField<R,ER> embeddableField)
      Deprecated, for removal: This API element is subject to removal in a future version.
      - [#12238] - 3.16.0 - Please re-generate your code.
      Get the fields row of an embeddable type.
    • subscriber

      public static final <T> org.reactivestreams.Subscriber<T> subscriber(Consumer<? super org.reactivestreams.Subscription> subscription, Consumer<? super T> onNext, Consumer<? super Throwable> onError, Runnable onComplete)
      Create a Subscriber from a set of lambdas.

      This is used for internal purposes and thus subject for change.

    • arrayType

      public static final <T> Class<T[]> arrayType(Class<T> type)
      JDK agnostic abstraction over Class.arrayType() and Array.newInstance(Class, int).
    • result

      public static final <R extends Record> Result<R> result(R record)
      Create an empty result from a Record using its row type.
    • commercial

      public static final boolean commercial()
      Whether this is a commercial edition of jOOQ.
    • commercial

      public static final boolean commercial(Supplier<String> logMessage)
      Whether this is a commercial edition of jOOQ, logging a warning message, if not.
    • requireCommercial

      public static final void requireCommercial(Supplier<String> logMessage) throws DataAccessException
      Whether this is a commercial edition of jOOQ, throwing an exception with a message, if not.
      Throws:
      DataAccessException
    • decomposing

      @Pro public static final Replacer decomposing()
      The implementation of Replacers.decomposing().
    • hash

      public static final int hash(QueryPart part)
      Return a non-negative hash code for a QueryPart, taking into account FindBugs' RV_ABSOLUTE_VALUE_OF_HASHCODE pattern