Class CustomDDLQuery

java.lang.Object
com.valqueries.automapper.context.schema.CustomDDLQuery
All Implemented Interfaces:
Serializable, Flow.Publisher<Integer>, org.jooq.Attachable, org.jooq.AttachableQueryPart, org.jooq.DDLQuery, org.jooq.Publisher<Integer>, org.jooq.Query, org.jooq.QueryPart, org.jooq.RowCountQuery, org.jooq.Statement, org.reactivestreams.Publisher<Integer>
Direct Known Subclasses:
ConditionalDDLQuery, MultiDDLQuery, RawDDLQuery

public abstract class CustomDDLQuery extends Object implements org.jooq.DDLQuery
See Also:
  • Constructor Details

    • CustomDDLQuery

      public CustomDDLQuery()
  • Method Details

    • executeAsync

      @Nonnull public CompletionStage<Integer> executeAsync()
      Specified by:
      executeAsync in interface org.jooq.Query
    • executeAsync

      @Nonnull public CompletionStage<Integer> executeAsync(Executor executor)
      Specified by:
      executeAsync in interface org.jooq.Query
    • isExecutable

      public boolean isExecutable()
      Specified by:
      isExecutable in interface org.jooq.Query
    • bind

      @Nonnull public org.jooq.Query bind(String s, Object o) throws IllegalArgumentException, org.jooq.exception.DataTypeException
      Specified by:
      bind in interface org.jooq.Query
      Throws:
      IllegalArgumentException
      org.jooq.exception.DataTypeException
    • bind

      @Nonnull public org.jooq.Query bind(int i, Object o) throws IllegalArgumentException, org.jooq.exception.DataTypeException
      Specified by:
      bind in interface org.jooq.Query
      Throws:
      IllegalArgumentException
      org.jooq.exception.DataTypeException
    • poolable

      @Nonnull public org.jooq.Query poolable(boolean b)
      Specified by:
      poolable in interface org.jooq.Query
    • queryTimeout

      @Nonnull public org.jooq.Query queryTimeout(int i)
      Specified by:
      queryTimeout in interface org.jooq.Query
    • keepStatement

      @Nonnull public org.jooq.CloseableQuery keepStatement(boolean b)
      Specified by:
      keepStatement in interface org.jooq.Query
    • cancel

      public void cancel() throws org.jooq.exception.DataAccessException
      Specified by:
      cancel in interface org.jooq.Query
      Throws:
      org.jooq.exception.DataAccessException
    • getSQL

      @Nonnull public String getSQL(org.jooq.conf.ParamType paramType)
      Specified by:
      getSQL in interface org.jooq.AttachableQueryPart
    • getBindValues

      @Nonnull public List<Object> getBindValues()
      Specified by:
      getBindValues in interface org.jooq.AttachableQueryPart
    • getParams

      @Nonnull public Map<String,org.jooq.Param<?>> getParams()
      Specified by:
      getParams in interface org.jooq.AttachableQueryPart
    • getParam

      public org.jooq.Param<?> getParam(String s)
      Specified by:
      getParam in interface org.jooq.AttachableQueryPart
    • attach

      public void attach(org.jooq.Configuration configuration)
      Specified by:
      attach in interface org.jooq.Attachable
    • detach

      public void detach()
      Specified by:
      detach in interface org.jooq.Attachable
    • configuration

      public org.jooq.Configuration configuration()
      Specified by:
      configuration in interface org.jooq.Attachable
    • subscribe

      public void subscribe(org.reactivestreams.Subscriber<? super Integer> subscriber)
      Specified by:
      subscribe in interface org.reactivestreams.Publisher<Integer>