final class org.jooq.impl.DropIndexImpl extends org.jooq.impl.AbstractRowCountQuery implements org.jooq.DropIndexOnStep
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.jooq.impl.DropIndexImpl
  super_class: org.jooq.impl.AbstractRowCountQuery
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 8904572826501186329

  private static final org.jooq.Clause[] CLAUSES;
    descriptor: [Lorg/jooq/Clause;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final java.util.Set<org.jooq.SQLDialect> NO_SUPPORT_IF_EXISTS;
    descriptor: Ljava/util/Set;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: Ljava/util/Set<Lorg/jooq/SQLDialect;>;

  private static final java.util.Set<org.jooq.SQLDialect> REQUIRES_ON;
    descriptor: Ljava/util/Set;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: Ljava/util/Set<Lorg/jooq/SQLDialect;>;

  private final org.jooq.Index index;
    descriptor: Lorg/jooq/Index;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean ifExists;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private org.jooq.Table<?> on;
    descriptor: Lorg/jooq/Table;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lorg/jooq/Table<*>;

  private java.lang.Boolean cascade;
    descriptor: Ljava/lang/Boolean;
    flags: (0x0002) ACC_PRIVATE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 89
            iconst_1
            anewarray org.jooq.Clause
            dup
            iconst_0
            getstatic org.jooq.Clause.DROP_INDEX:Lorg/jooq/Clause;
            aastore
            putstatic org.jooq.impl.DropIndexImpl.CLAUSES:[Lorg/jooq/Clause;
         1: .line 90
            iconst_3
            anewarray org.jooq.SQLDialect
            dup
            iconst_0
            getstatic org.jooq.SQLDialect.CUBRID:Lorg/jooq/SQLDialect;
            aastore
            dup
            iconst_1
            getstatic org.jooq.SQLDialect.DERBY:Lorg/jooq/SQLDialect;
            aastore
            dup
            iconst_2
            getstatic org.jooq.SQLDialect.FIREBIRD:Lorg/jooq/SQLDialect;
            aastore
            invokestatic org.jooq.SQLDialect.supportedBy:([Lorg/jooq/SQLDialect;)Ljava/util/Set;
            putstatic org.jooq.impl.DropIndexImpl.NO_SUPPORT_IF_EXISTS:Ljava/util/Set;
         2: .line 91
            iconst_2
            anewarray org.jooq.SQLDialect
            dup
            iconst_0
            getstatic org.jooq.SQLDialect.MARIADB:Lorg/jooq/SQLDialect;
            aastore
            dup
            iconst_1
            getstatic org.jooq.SQLDialect.MYSQL:Lorg/jooq/SQLDialect;
            aastore
            invokestatic org.jooq.SQLDialect.supportedBy:([Lorg/jooq/SQLDialect;)Ljava/util/Set;
            putstatic org.jooq.impl.DropIndexImpl.REQUIRES_ON:Ljava/util/Set;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(org.jooq.Configuration, org.jooq.Index);
    descriptor: (Lorg/jooq/Configuration;Lorg/jooq/Index;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.jooq.impl.DropIndexImpl this
        start local 1 // org.jooq.Configuration configuration
        start local 2 // org.jooq.Index index
         0: .line 99
            aload 0 /* this */
            aload 1 /* configuration */
            aload 2 /* index */
            iconst_0
            invokespecial org.jooq.impl.DropIndexImpl.<init>:(Lorg/jooq/Configuration;Lorg/jooq/Index;Z)V
         1: .line 100
            return
        end local 2 // org.jooq.Index index
        end local 1 // org.jooq.Configuration configuration
        end local 0 // org.jooq.impl.DropIndexImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lorg/jooq/impl/DropIndexImpl;
            0    2     1  configuration  Lorg/jooq/Configuration;
            0    2     2          index  Lorg/jooq/Index;
    MethodParameters:
               Name  Flags
      configuration  
      index          

  void <init>(org.jooq.Configuration, org.jooq.Index, boolean);
    descriptor: (Lorg/jooq/Configuration;Lorg/jooq/Index;Z)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.jooq.impl.DropIndexImpl this
        start local 1 // org.jooq.Configuration configuration
        start local 2 // org.jooq.Index index
        start local 3 // boolean ifExists
         0: .line 103
            aload 0 /* this */
            aload 1 /* configuration */
            invokespecial org.jooq.impl.AbstractRowCountQuery.<init>:(Lorg/jooq/Configuration;)V
         1: .line 105
            aload 0 /* this */
            aload 2 /* index */
            putfield org.jooq.impl.DropIndexImpl.index:Lorg/jooq/Index;
         2: .line 106
            aload 0 /* this */
            iload 3 /* ifExists */
            putfield org.jooq.impl.DropIndexImpl.ifExists:Z
         3: .line 107
            aload 0 /* this */
            aload 2 /* index */
            invokeinterface org.jooq.Index.getTable:()Lorg/jooq/Table;
            putfield org.jooq.impl.DropIndexImpl.on:Lorg/jooq/Table;
         4: .line 108
            return
        end local 3 // boolean ifExists
        end local 2 // org.jooq.Index index
        end local 1 // org.jooq.Configuration configuration
        end local 0 // org.jooq.impl.DropIndexImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lorg/jooq/impl/DropIndexImpl;
            0    5     1  configuration  Lorg/jooq/Configuration;
            0    5     2          index  Lorg/jooq/Index;
            0    5     3       ifExists  Z
    MethodParameters:
               Name  Flags
      configuration  
      index          
      ifExists       

  final org.jooq.Index $index();
    descriptor: ()Lorg/jooq/Index;
    flags: (0x0010) ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jooq.impl.DropIndexImpl this
         0: .line 110
            aload 0 /* this */
            getfield org.jooq.impl.DropIndexImpl.index:Lorg/jooq/Index;
            areturn
        end local 0 // org.jooq.impl.DropIndexImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jooq/impl/DropIndexImpl;

  final boolean $ifExists();
    descriptor: ()Z
    flags: (0x0010) ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jooq.impl.DropIndexImpl this
         0: .line 111
            aload 0 /* this */
            getfield org.jooq.impl.DropIndexImpl.ifExists:Z
            ireturn
        end local 0 // org.jooq.impl.DropIndexImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jooq/impl/DropIndexImpl;

  final org.jooq.Table<?> $on();
    descriptor: ()Lorg/jooq/Table;
    flags: (0x0010) ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jooq.impl.DropIndexImpl this
         0: .line 112
            aload 0 /* this */
            getfield org.jooq.impl.DropIndexImpl.on:Lorg/jooq/Table;
            areturn
        end local 0 // org.jooq.impl.DropIndexImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jooq/impl/DropIndexImpl;
    Signature: ()Lorg/jooq/Table<*>;

  public final org.jooq.impl.DropIndexImpl on(org.jooq.Table<?>);
    descriptor: (Lorg/jooq/Table;)Lorg/jooq/impl/DropIndexImpl;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jooq.impl.DropIndexImpl this
        start local 1 // org.jooq.Table table
         0: .line 120
            aload 0 /* this */
            aload 1 /* table */
            putfield org.jooq.impl.DropIndexImpl.on:Lorg/jooq/Table;
         1: .line 121
            aload 0 /* this */
            areturn
        end local 1 // org.jooq.Table table
        end local 0 // org.jooq.impl.DropIndexImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/jooq/impl/DropIndexImpl;
            0    2     1  table  Lorg/jooq/Table<*>;
    Signature: (Lorg/jooq/Table<*>;)Lorg/jooq/impl/DropIndexImpl;
    MethodParameters:
       Name  Flags
      table  

  public final org.jooq.impl.DropIndexImpl on(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/jooq/impl/DropIndexImpl;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jooq.impl.DropIndexImpl this
        start local 1 // java.lang.String tableName
         0: .line 126
            aload 0 /* this */
            aload 1 /* tableName */
            invokestatic org.jooq.impl.DSL.name:(Ljava/lang/String;)Lorg/jooq/Name;
            invokevirtual org.jooq.impl.DropIndexImpl.on:(Lorg/jooq/Name;)Lorg/jooq/impl/DropIndexImpl;
            areturn
        end local 1 // java.lang.String tableName
        end local 0 // org.jooq.impl.DropIndexImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/jooq/impl/DropIndexImpl;
            0    1     1  tableName  Ljava/lang/String;
    MethodParameters:
           Name  Flags
      tableName  

  public final org.jooq.impl.DropIndexImpl on(org.jooq.Name);
    descriptor: (Lorg/jooq/Name;)Lorg/jooq/impl/DropIndexImpl;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jooq.impl.DropIndexImpl this
        start local 1 // org.jooq.Name tableName
         0: .line 131
            aload 0 /* this */
            aload 1 /* tableName */
            invokestatic org.jooq.impl.DSL.table:(Lorg/jooq/Name;)Lorg/jooq/Table;
            invokevirtual org.jooq.impl.DropIndexImpl.on:(Lorg/jooq/Table;)Lorg/jooq/impl/DropIndexImpl;
            areturn
        end local 1 // org.jooq.Name tableName
        end local 0 // org.jooq.impl.DropIndexImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/jooq/impl/DropIndexImpl;
            0    1     1  tableName  Lorg/jooq/Name;
    MethodParameters:
           Name  Flags
      tableName  

  public final org.jooq.impl.DropIndexImpl cascade();
    descriptor: ()Lorg/jooq/impl/DropIndexImpl;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.jooq.impl.DropIndexImpl this
         0: .line 136
            aload 0 /* this */
            iconst_1
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            putfield org.jooq.impl.DropIndexImpl.cascade:Ljava/lang/Boolean;
         1: .line 137
            aload 0 /* this */
            areturn
        end local 0 // org.jooq.impl.DropIndexImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/jooq/impl/DropIndexImpl;

  public final org.jooq.impl.DropIndexImpl restrict();
    descriptor: ()Lorg/jooq/impl/DropIndexImpl;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.jooq.impl.DropIndexImpl this
         0: .line 142
            aload 0 /* this */
            iconst_0
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            putfield org.jooq.impl.DropIndexImpl.cascade:Ljava/lang/Boolean;
         1: .line 143
            aload 0 /* this */
            areturn
        end local 0 // org.jooq.impl.DropIndexImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/jooq/impl/DropIndexImpl;

  private final boolean supportsIfExists(org.jooq.Context<?>);
    descriptor: (Lorg/jooq/Context;)Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jooq.impl.DropIndexImpl this
        start local 1 // org.jooq.Context ctx
         0: .line 151
            getstatic org.jooq.impl.DropIndexImpl.NO_SUPPORT_IF_EXISTS:Ljava/util/Set;
            aload 1 /* ctx */
            invokeinterface org.jooq.Context.dialect:()Lorg/jooq/SQLDialect;
            invokeinterface java.util.Set.contains:(Ljava/lang/Object;)Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 1 // org.jooq.Context ctx
        end local 0 // org.jooq.impl.DropIndexImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/jooq/impl/DropIndexImpl;
            0    3     1   ctx  Lorg/jooq/Context<*>;
    Signature: (Lorg/jooq/Context<*>;)Z
    MethodParameters:
      Name  Flags
      ctx   

  public final void accept(org.jooq.Context<?>);
    descriptor: (Lorg/jooq/Context;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jooq.impl.DropIndexImpl this
        start local 1 // org.jooq.Context ctx
         0: .line 156
            aload 0 /* this */
            getfield org.jooq.impl.DropIndexImpl.ifExists:Z
            ifeq 5
            aload 0 /* this */
            aload 1 /* ctx */
            invokevirtual org.jooq.impl.DropIndexImpl.supportsIfExists:(Lorg/jooq/Context;)Z
            ifne 5
         1: .line 157
            aload 1 /* ctx */
            getstatic org.jooq.impl.DDLStatementType.DROP_INDEX:Lorg/jooq/impl/DDLStatementType;
            invokestatic org.jooq.impl.Tools.beginTryCatch:(Lorg/jooq/Context;Lorg/jooq/impl/DDLStatementType;)V
         2: .line 158
            aload 0 /* this */
            aload 1 /* ctx */
            invokevirtual org.jooq.impl.DropIndexImpl.accept0:(Lorg/jooq/Context;)V
         3: .line 159
            aload 1 /* ctx */
            getstatic org.jooq.impl.DDLStatementType.DROP_INDEX:Lorg/jooq/impl/DDLStatementType;
            invokestatic org.jooq.impl.Tools.endTryCatch:(Lorg/jooq/Context;Lorg/jooq/impl/DDLStatementType;)V
         4: .line 160
            goto 6
         5: .line 162
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* ctx */
            invokevirtual org.jooq.impl.DropIndexImpl.accept0:(Lorg/jooq/Context;)V
         6: .line 164
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.jooq.Context ctx
        end local 0 // org.jooq.impl.DropIndexImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/jooq/impl/DropIndexImpl;
            0    7     1   ctx  Lorg/jooq/Context<*>;
    Signature: (Lorg/jooq/Context<*>;)V
    MethodParameters:
      Name  Flags
      ctx   

  private void accept0(org.jooq.Context<?>);
    descriptor: (Lorg/jooq/Context;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jooq.impl.DropIndexImpl this
        start local 1 // org.jooq.Context ctx
         0: .line 167
            aload 1 /* ctx */
            getstatic org.jooq.impl.Keywords.K_DROP_INDEX:Lorg/jooq/Keyword;
            invokeinterface org.jooq.Context.visit:(Lorg/jooq/QueryPart;)Lorg/jooq/Context;
            checkcast org.jooq.Context
            bipush 32
            invokeinterface org.jooq.Context.sql:(C)Lorg/jooq/Context;
            pop
         1: .line 169
            aload 0 /* this */
            getfield org.jooq.impl.DropIndexImpl.ifExists:Z
            ifeq 3
            aload 0 /* this */
            aload 1 /* ctx */
            invokevirtual org.jooq.impl.DropIndexImpl.supportsIfExists:(Lorg/jooq/Context;)Z
            ifeq 3
         2: .line 170
            aload 1 /* ctx */
            getstatic org.jooq.impl.Keywords.K_IF_EXISTS:Lorg/jooq/Keyword;
            invokeinterface org.jooq.Context.visit:(Lorg/jooq/QueryPart;)Lorg/jooq/Context;
            checkcast org.jooq.Context
            bipush 32
            invokeinterface org.jooq.Context.sql:(C)Lorg/jooq/Context;
            pop
         3: .line 177
      StackMap locals:
      StackMap stack:
            aload 1 /* ctx */
            aload 0 /* this */
            getfield org.jooq.impl.DropIndexImpl.index:Lorg/jooq/Index;
            invokeinterface org.jooq.Context.visit:(Lorg/jooq/QueryPart;)Lorg/jooq/Context;
            pop
         4: .line 179
            aload 0 /* this */
            getfield org.jooq.impl.DropIndexImpl.on:Lorg/jooq/Table;
            ifnull 6
            getstatic org.jooq.impl.DropIndexImpl.REQUIRES_ON:Ljava/util/Set;
            aload 1 /* ctx */
            invokeinterface org.jooq.Context.dialect:()Lorg/jooq/SQLDialect;
            invokeinterface java.util.Set.contains:(Ljava/lang/Object;)Z
            ifeq 6
         5: .line 180
            aload 1 /* ctx */
            bipush 32
            invokeinterface org.jooq.Context.sql:(C)Lorg/jooq/Context;
            checkcast org.jooq.Context
            getstatic org.jooq.impl.Keywords.K_ON:Lorg/jooq/Keyword;
            invokeinterface org.jooq.Context.visit:(Lorg/jooq/QueryPart;)Lorg/jooq/Context;
            checkcast org.jooq.Context
            bipush 32
            invokeinterface org.jooq.Context.sql:(C)Lorg/jooq/Context;
            checkcast org.jooq.Context
            aload 0 /* this */
            getfield org.jooq.impl.DropIndexImpl.on:Lorg/jooq/Table;
            invokeinterface org.jooq.Context.visit:(Lorg/jooq/QueryPart;)Lorg/jooq/Context;
            pop
         6: .line 182
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.jooq.impl.DropIndexImpl.cascade:Ljava/lang/Boolean;
            ifnull 10
         7: .line 183
            aload 1 /* ctx */
            bipush 32
            invokeinterface org.jooq.Context.sql:(C)Lorg/jooq/Context;
            checkcast org.jooq.Context
            aload 0 /* this */
            getfield org.jooq.impl.DropIndexImpl.cascade:Ljava/lang/Boolean;
            invokevirtual java.lang.Boolean.booleanValue:()Z
            ifeq 8
            getstatic org.jooq.impl.Keywords.K_CASCADE:Lorg/jooq/Keyword;
            goto 9
      StackMap locals:
      StackMap stack: org.jooq.Context
         8: getstatic org.jooq.impl.Keywords.K_RESTRICT:Lorg/jooq/Keyword;
      StackMap locals: org.jooq.impl.DropIndexImpl org.jooq.Context
      StackMap stack: org.jooq.Context org.jooq.Keyword
         9: invokeinterface org.jooq.Context.visit:(Lorg/jooq/QueryPart;)Lorg/jooq/Context;
            pop
        10: .line 184
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.jooq.Context ctx
        end local 0 // org.jooq.impl.DropIndexImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lorg/jooq/impl/DropIndexImpl;
            0   11     1   ctx  Lorg/jooq/Context<*>;
    Signature: (Lorg/jooq/Context<*>;)V
    MethodParameters:
      Name  Flags
      ctx   

  public final org.jooq.Clause[] clauses(org.jooq.Context<?>);
    descriptor: (Lorg/jooq/Context;)[Lorg/jooq/Clause;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.jooq.impl.DropIndexImpl this
        start local 1 // org.jooq.Context ctx
         0: .line 188
            getstatic org.jooq.impl.DropIndexImpl.CLAUSES:[Lorg/jooq/Clause;
            areturn
        end local 1 // org.jooq.Context ctx
        end local 0 // org.jooq.impl.DropIndexImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jooq/impl/DropIndexImpl;
            0    1     1   ctx  Lorg/jooq/Context<*>;
    Signature: (Lorg/jooq/Context<*>;)[Lorg/jooq/Clause;
    MethodParameters:
      Name  Flags
      ctx   

  public org.jooq.DropIndexCascadeStep on(org.jooq.Name);
    descriptor: (Lorg/jooq/Name;)Lorg/jooq/DropIndexCascadeStep;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.jooq.impl.DropIndexImpl.on:(Lorg/jooq/Name;)Lorg/jooq/impl/DropIndexImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.jooq.DropIndexCascadeStep on(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/jooq/DropIndexCascadeStep;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.jooq.impl.DropIndexImpl.on:(Ljava/lang/String;)Lorg/jooq/impl/DropIndexImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.jooq.DropIndexCascadeStep on(org.jooq.Table);
    descriptor: (Lorg/jooq/Table;)Lorg/jooq/DropIndexCascadeStep;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.jooq.impl.DropIndexImpl.on:(Lorg/jooq/Table;)Lorg/jooq/impl/DropIndexImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.jooq.DropIndexFinalStep restrict();
    descriptor: ()Lorg/jooq/DropIndexFinalStep;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.jooq.impl.DropIndexImpl.restrict:()Lorg/jooq/impl/DropIndexImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.jooq.DropIndexFinalStep cascade();
    descriptor: ()Lorg/jooq/DropIndexFinalStep;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.jooq.impl.DropIndexImpl.cascade:()Lorg/jooq/impl/DropIndexImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "DropIndexImpl.java"