public class org.jdbi.v3.sqlobject.customizer.internal.MaxRowsFactory implements org.jdbi.v3.sqlobject.customizer.SqlStatementCustomizerFactory
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.jdbi.v3.sqlobject.customizer.internal.MaxRowsFactory
  super_class: java.lang.Object
{
  public static final int DEFAULT_MAX_ROWS;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: -1

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jdbi.v3.sqlobject.customizer.internal.MaxRowsFactory this
         0: .line 27
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.jdbi.v3.sqlobject.customizer.internal.MaxRowsFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jdbi/v3/sqlobject/customizer/internal/MaxRowsFactory;

  public org.jdbi.v3.sqlobject.customizer.SqlStatementCustomizer createForMethod(java.lang.annotation.Annotation, java.lang.Class<?>, java.lang.reflect.Method);
    descriptor: (Ljava/lang/annotation/Annotation;Ljava/lang/Class;Ljava/lang/reflect/Method;)Lorg/jdbi/v3/sqlobject/customizer/SqlStatementCustomizer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=5, args_size=4
        start local 0 // org.jdbi.v3.sqlobject.customizer.internal.MaxRowsFactory this
        start local 1 // java.lang.annotation.Annotation annotation
        start local 2 // java.lang.Class sqlObjectType
        start local 3 // java.lang.reflect.Method method
         0: .line 33
            aload 1 /* annotation */
            checkcast org.jdbi.v3.sqlobject.customizer.MaxRows
            invokeinterface org.jdbi.v3.sqlobject.customizer.MaxRows.value:()I
            istore 4 /* maxRows */
        start local 4 // int maxRows
         1: .line 35
            iload 4 /* maxRows */
            iconst_m1
            if_icmpne 8
         2: .line 36
            new java.lang.IllegalArgumentException
            dup
         3: .line 37
            ldc "no value given for @%s on %s:%s"
            iconst_3
            anewarray java.lang.Object
            dup
            iconst_0
         4: .line 38
            ldc Lorg/jdbi/v3/sqlobject/customizer/MaxRows;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            aastore
            dup
            iconst_1
         5: .line 39
            aload 2 /* sqlObjectType */
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            aastore
            dup
            iconst_2
         6: .line 40
            aload 3 /* method */
            invokevirtual java.lang.reflect.Method.getName:()Ljava/lang/String;
            aastore
         7: .line 36
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 43
      StackMap locals: int
      StackMap stack:
            iload 4 /* maxRows */
            ifgt 16
         9: .line 44
            new java.lang.IllegalArgumentException
            dup
        10: .line 45
            ldc "@%s value given on %s:%s is %s, which is negative or 0. This makes no sense."
            iconst_4
            anewarray java.lang.Object
            dup
            iconst_0
        11: .line 46
            ldc Lorg/jdbi/v3/sqlobject/customizer/MaxRows;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            aastore
            dup
            iconst_1
        12: .line 47
            aload 2 /* sqlObjectType */
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            aastore
            dup
            iconst_2
        13: .line 48
            aload 3 /* method */
            invokevirtual java.lang.reflect.Method.getName:()Ljava/lang/String;
            aastore
            dup
            iconst_3
        14: .line 49
            iload 4 /* maxRows */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
        15: .line 44
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        16: .line 53
      StackMap locals:
      StackMap stack:
            iload 4 /* maxRows */
            invokedynamic apply(I)Lorg/jdbi/v3/sqlobject/customizer/SqlStatementCustomizer;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Lorg/jdbi/v3/core/statement/SqlStatement;)V
                  org/jdbi/v3/sqlobject/customizer/internal/MaxRowsFactory.lambda$0(ILorg/jdbi/v3/core/statement/SqlStatement;)V (6)
                  (Lorg/jdbi/v3/core/statement/SqlStatement;)V
            areturn
        end local 4 // int maxRows
        end local 3 // java.lang.reflect.Method method
        end local 2 // java.lang.Class sqlObjectType
        end local 1 // java.lang.annotation.Annotation annotation
        end local 0 // org.jdbi.v3.sqlobject.customizer.internal.MaxRowsFactory this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   17     0           this  Lorg/jdbi/v3/sqlobject/customizer/internal/MaxRowsFactory;
            0   17     1     annotation  Ljava/lang/annotation/Annotation;
            0   17     2  sqlObjectType  Ljava/lang/Class<*>;
            0   17     3         method  Ljava/lang/reflect/Method;
            1   17     4        maxRows  I
    Signature: (Ljava/lang/annotation/Annotation;Ljava/lang/Class<*>;Ljava/lang/reflect/Method;)Lorg/jdbi/v3/sqlobject/customizer/SqlStatementCustomizer;
    MethodParameters:
               Name  Flags
      annotation     
      sqlObjectType  
      method         

  public org.jdbi.v3.sqlobject.customizer.SqlStatementParameterCustomizer createForParameter(java.lang.annotation.Annotation, java.lang.Class<?>, java.lang.reflect.Method, java.lang.reflect.Parameter, int, java.lang.reflect.Type);
    descriptor: (Ljava/lang/annotation/Annotation;Ljava/lang/Class;Ljava/lang/reflect/Method;Ljava/lang/reflect/Parameter;ILjava/lang/reflect/Type;)Lorg/jdbi/v3/sqlobject/customizer/SqlStatementParameterCustomizer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=8, args_size=7
        start local 0 // org.jdbi.v3.sqlobject.customizer.internal.MaxRowsFactory this
        start local 1 // java.lang.annotation.Annotation annotation
        start local 2 // java.lang.Class sqlObjectType
        start local 3 // java.lang.reflect.Method method
        start local 4 // java.lang.reflect.Parameter param
        start local 5 // int index
        start local 6 // java.lang.reflect.Type type
         0: .line 66
            aload 1 /* annotation */
            checkcast org.jdbi.v3.sqlobject.customizer.MaxRows
            invokeinterface org.jdbi.v3.sqlobject.customizer.MaxRows.value:()I
            istore 7 /* value */
        start local 7 // int value
         1: .line 67
            iload 7 /* value */
            iconst_m1
            if_icmpeq 9
         2: .line 68
            new java.lang.IllegalArgumentException
            dup
         3: .line 69
            ldc "You've specified a value for @%s on %s:%s(%s) \u2014 this value won't do anything, the parameter value will be used instead. Remove the value to prevent confusion."
            iconst_4
            anewarray java.lang.Object
            dup
            iconst_0
         4: .line 70
            ldc Lorg/jdbi/v3/sqlobject/customizer/MaxRows;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            aastore
            dup
            iconst_1
         5: .line 71
            aload 2 /* sqlObjectType */
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            aastore
            dup
            iconst_2
         6: .line 72
            aload 3 /* method */
            invokevirtual java.lang.reflect.Method.getName:()Ljava/lang/String;
            aastore
            dup
            iconst_3
         7: .line 73
            aload 4 /* param */
            invokevirtual java.lang.reflect.Parameter.getName:()Ljava/lang/String;
            aastore
         8: .line 68
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         9: .line 77
      StackMap locals: int
      StackMap stack:
            aload 2 /* sqlObjectType */
            aload 3 /* method */
            aload 4 /* param */
            invokedynamic apply(Ljava/lang/Class;Ljava/lang/reflect/Method;Ljava/lang/reflect/Parameter;)Lorg/jdbi/v3/sqlobject/customizer/SqlStatementParameterCustomizer;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Lorg/jdbi/v3/core/statement/SqlStatement;Ljava/lang/Object;)V
                  org/jdbi/v3/sqlobject/customizer/internal/MaxRowsFactory.lambda$1(Ljava/lang/Class;Ljava/lang/reflect/Method;Ljava/lang/reflect/Parameter;Lorg/jdbi/v3/core/statement/SqlStatement;Ljava/lang/Object;)V (6)
                  (Lorg/jdbi/v3/core/statement/SqlStatement;Ljava/lang/Object;)V
            areturn
        end local 7 // int value
        end local 6 // java.lang.reflect.Type type
        end local 5 // int index
        end local 4 // java.lang.reflect.Parameter param
        end local 3 // java.lang.reflect.Method method
        end local 2 // java.lang.Class sqlObjectType
        end local 1 // java.lang.annotation.Annotation annotation
        end local 0 // org.jdbi.v3.sqlobject.customizer.internal.MaxRowsFactory this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   10     0           this  Lorg/jdbi/v3/sqlobject/customizer/internal/MaxRowsFactory;
            0   10     1     annotation  Ljava/lang/annotation/Annotation;
            0   10     2  sqlObjectType  Ljava/lang/Class<*>;
            0   10     3         method  Ljava/lang/reflect/Method;
            0   10     4          param  Ljava/lang/reflect/Parameter;
            0   10     5          index  I
            0   10     6           type  Ljava/lang/reflect/Type;
            1   10     7          value  I
    Signature: (Ljava/lang/annotation/Annotation;Ljava/lang/Class<*>;Ljava/lang/reflect/Method;Ljava/lang/reflect/Parameter;ILjava/lang/reflect/Type;)Lorg/jdbi/v3/sqlobject/customizer/SqlStatementParameterCustomizer;
    MethodParameters:
               Name  Flags
      annotation     
      sqlObjectType  
      method         
      param          
      index          
      type           

  private static void lambda$0(int, org.jdbi.v3.core.statement.SqlStatement);
    descriptor: (ILorg/jdbi/v3/core/statement/SqlStatement;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // org.jdbi.v3.core.statement.SqlStatement stmt
         0: .line 53
            aload 1 /* stmt */
            checkcast org.jdbi.v3.core.statement.Query
            iload 0
            invokevirtual org.jdbi.v3.core.statement.Query.setMaxRows:(I)Lorg/jdbi/v3/core/statement/Query;
            return
        end local 1 // org.jdbi.v3.core.statement.SqlStatement stmt
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     1  stmt  Lorg/jdbi/v3/core/statement/SqlStatement<*>;
    Exceptions:
      throws java.sql.SQLException

  private static void lambda$1(java.lang.Class, java.lang.reflect.Method, java.lang.reflect.Parameter, org.jdbi.v3.core.statement.SqlStatement, java.lang.Object);
    descriptor: (Ljava/lang/Class;Ljava/lang/reflect/Method;Ljava/lang/reflect/Parameter;Lorg/jdbi/v3/core/statement/SqlStatement;Ljava/lang/Object;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=7, locals=6, args_size=5
        start local 3 // org.jdbi.v3.core.statement.SqlStatement stmt
        start local 4 // java.lang.Object arg
         0: .line 78
            aload 4 /* arg */
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            istore 5 /* maxRows */
        start local 5 // int maxRows
         1: .line 79
            iload 5 /* maxRows */
            ifgt 10
         2: .line 80
            new java.lang.IllegalArgumentException
            dup
         3: .line 81
            ldc "@%s value given on %s:%s(%s) is %s, which is negative or 0. This makes no sense."
            iconst_5
            anewarray java.lang.Object
            dup
            iconst_0
         4: .line 82
            ldc Lorg/jdbi/v3/sqlobject/customizer/MaxRows;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            aastore
            dup
            iconst_1
         5: .line 83
            aload 0
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            aastore
            dup
            iconst_2
         6: .line 84
            aload 1
            invokevirtual java.lang.reflect.Method.getName:()Ljava/lang/String;
            aastore
            dup
            iconst_3
         7: .line 85
            aload 2
            invokevirtual java.lang.reflect.Parameter.getName:()Ljava/lang/String;
            aastore
            dup
            iconst_4
         8: .line 86
            iload 5 /* maxRows */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
         9: .line 80
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        10: .line 90
      StackMap locals: int
      StackMap stack:
            aload 3 /* stmt */
            checkcast org.jdbi.v3.core.statement.Query
            iload 5 /* maxRows */
            invokevirtual org.jdbi.v3.core.statement.Query.setMaxRows:(I)Lorg/jdbi/v3/core/statement/Query;
            pop
        end local 5 // int maxRows
        11: .line 91
            return
        end local 4 // java.lang.Object arg
        end local 3 // org.jdbi.v3.core.statement.SqlStatement stmt
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   12     3     stmt  Lorg/jdbi/v3/core/statement/SqlStatement<*>;
            0   12     4      arg  Ljava/lang/Object;
            1   11     5  maxRows  I
    Exceptions:
      throws java.sql.SQLException
}
SourceFile: "MaxRowsFactory.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles