public class io.vertx.ext.mongo.FindOptions
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.ext.mongo.FindOptions
  super_class: java.lang.Object
{
  public static final int DEFAULT_LIMIT;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: -1

  public static final int DEFAULT_SKIP;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  public static final int DEFAULT_BATCH_SIZE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 20

  private io.vertx.core.json.JsonObject fields;
    descriptor: Lio/vertx/core/json/JsonObject;
    flags: (0x0002) ACC_PRIVATE

  private io.vertx.core.json.JsonObject sort;
    descriptor: Lio/vertx/core/json/JsonObject;
    flags: (0x0002) ACC_PRIVATE

  private int limit;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int skip;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int batchSize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.ext.mongo.FindOptions this
         0: .line 38
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 39
            aload 0 /* this */
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            putfield io.vertx.ext.mongo.FindOptions.fields:Lio/vertx/core/json/JsonObject;
         2: .line 40
            aload 0 /* this */
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            putfield io.vertx.ext.mongo.FindOptions.sort:Lio/vertx/core/json/JsonObject;
         3: .line 41
            aload 0 /* this */
            iconst_m1
            putfield io.vertx.ext.mongo.FindOptions.limit:I
         4: .line 42
            aload 0 /* this */
            iconst_0
            putfield io.vertx.ext.mongo.FindOptions.skip:I
         5: .line 43
            aload 0 /* this */
            bipush 20
            putfield io.vertx.ext.mongo.FindOptions.batchSize:I
         6: .line 44
            return
        end local 0 // io.vertx.ext.mongo.FindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lio/vertx/ext/mongo/FindOptions;

  public void <init>(io.vertx.ext.mongo.FindOptions);
    descriptor: (Lio/vertx/ext/mongo/FindOptions;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.ext.mongo.FindOptions this
        start local 1 // io.vertx.ext.mongo.FindOptions options
         0: .line 51
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 52
            aload 0 /* this */
            aload 1 /* options */
            getfield io.vertx.ext.mongo.FindOptions.fields:Lio/vertx/core/json/JsonObject;
            ifnull 2
            aload 1 /* options */
            getfield io.vertx.ext.mongo.FindOptions.fields:Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.core.json.JsonObject.copy:()Lio/vertx/core/json/JsonObject;
            goto 3
      StackMap locals: io.vertx.ext.mongo.FindOptions io.vertx.ext.mongo.FindOptions
      StackMap stack: io.vertx.ext.mongo.FindOptions
         2: new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
      StackMap locals: io.vertx.ext.mongo.FindOptions io.vertx.ext.mongo.FindOptions
      StackMap stack: io.vertx.ext.mongo.FindOptions io.vertx.core.json.JsonObject
         3: putfield io.vertx.ext.mongo.FindOptions.fields:Lio/vertx/core/json/JsonObject;
         4: .line 53
            aload 0 /* this */
            aload 1 /* options */
            getfield io.vertx.ext.mongo.FindOptions.sort:Lio/vertx/core/json/JsonObject;
            ifnull 5
            aload 1 /* options */
            getfield io.vertx.ext.mongo.FindOptions.sort:Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.core.json.JsonObject.copy:()Lio/vertx/core/json/JsonObject;
            goto 6
      StackMap locals:
      StackMap stack: io.vertx.ext.mongo.FindOptions
         5: new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
      StackMap locals: io.vertx.ext.mongo.FindOptions io.vertx.ext.mongo.FindOptions
      StackMap stack: io.vertx.ext.mongo.FindOptions io.vertx.core.json.JsonObject
         6: putfield io.vertx.ext.mongo.FindOptions.sort:Lio/vertx/core/json/JsonObject;
         7: .line 54
            aload 0 /* this */
            aload 1 /* options */
            getfield io.vertx.ext.mongo.FindOptions.limit:I
            putfield io.vertx.ext.mongo.FindOptions.limit:I
         8: .line 55
            aload 0 /* this */
            aload 1 /* options */
            getfield io.vertx.ext.mongo.FindOptions.skip:I
            putfield io.vertx.ext.mongo.FindOptions.skip:I
         9: .line 56
            aload 0 /* this */
            aload 1 /* options */
            getfield io.vertx.ext.mongo.FindOptions.batchSize:I
            putfield io.vertx.ext.mongo.FindOptions.batchSize:I
        10: .line 57
            return
        end local 1 // io.vertx.ext.mongo.FindOptions options
        end local 0 // io.vertx.ext.mongo.FindOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   11     0     this  Lio/vertx/ext/mongo/FindOptions;
            0   11     1  options  Lio/vertx/ext/mongo/FindOptions;
    MethodParameters:
         Name  Flags
      options  

  public void <init>(io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/core/json/JsonObject;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.mongo.FindOptions this
        start local 1 // io.vertx.core.json.JsonObject options
         0: .line 65
            aload 0 /* this */
            invokespecial io.vertx.ext.mongo.FindOptions.<init>:()V
         1: .line 66
            aload 1 /* options */
            aload 0 /* this */
            invokestatic io.vertx.ext.mongo.FindOptionsConverter.fromJson:(Ljava/lang/Iterable;Lio/vertx/ext/mongo/FindOptions;)V
         2: .line 67
            return
        end local 1 // io.vertx.core.json.JsonObject options
        end local 0 // io.vertx.ext.mongo.FindOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/ext/mongo/FindOptions;
            0    3     1  options  Lio/vertx/core/json/JsonObject;
    MethodParameters:
         Name  Flags
      options  

  public io.vertx.core.json.JsonObject toJson();
    descriptor: ()Lio/vertx/core/json/JsonObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.ext.mongo.FindOptions this
         0: .line 75
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            astore 1 /* json */
        start local 1 // io.vertx.core.json.JsonObject json
         1: .line 76
            aload 0 /* this */
            aload 1 /* json */
            invokestatic io.vertx.ext.mongo.FindOptionsConverter.toJson:(Lio/vertx/ext/mongo/FindOptions;Lio/vertx/core/json/JsonObject;)V
         2: .line 77
            aload 1 /* json */
            areturn
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.ext.mongo.FindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/ext/mongo/FindOptions;
            1    3     1  json  Lio/vertx/core/json/JsonObject;

  public io.vertx.core.json.JsonObject getFields();
    descriptor: ()Lio/vertx/core/json/JsonObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.mongo.FindOptions this
         0: .line 86
            aload 0 /* this */
            getfield io.vertx.ext.mongo.FindOptions.fields:Lio/vertx/core/json/JsonObject;
            areturn
        end local 0 // io.vertx.ext.mongo.FindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/mongo/FindOptions;

  public io.vertx.ext.mongo.FindOptions setFields(io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/core/json/JsonObject;)Lio/vertx/ext/mongo/FindOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.mongo.FindOptions this
        start local 1 // io.vertx.core.json.JsonObject fields
         0: .line 96
            aload 0 /* this */
            aload 1 /* fields */
            putfield io.vertx.ext.mongo.FindOptions.fields:Lio/vertx/core/json/JsonObject;
         1: .line 97
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.json.JsonObject fields
        end local 0 // io.vertx.ext.mongo.FindOptions this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/vertx/ext/mongo/FindOptions;
            0    2     1  fields  Lio/vertx/core/json/JsonObject;
    MethodParameters:
        Name  Flags
      fields  

  public io.vertx.core.json.JsonObject getSort();
    descriptor: ()Lio/vertx/core/json/JsonObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.mongo.FindOptions this
         0: .line 106
            aload 0 /* this */
            getfield io.vertx.ext.mongo.FindOptions.sort:Lio/vertx/core/json/JsonObject;
            areturn
        end local 0 // io.vertx.ext.mongo.FindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/mongo/FindOptions;

  public io.vertx.ext.mongo.FindOptions setSort(io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/core/json/JsonObject;)Lio/vertx/ext/mongo/FindOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.mongo.FindOptions this
        start local 1 // io.vertx.core.json.JsonObject sort
         0: .line 116
            aload 0 /* this */
            aload 1 /* sort */
            putfield io.vertx.ext.mongo.FindOptions.sort:Lio/vertx/core/json/JsonObject;
         1: .line 117
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.json.JsonObject sort
        end local 0 // io.vertx.ext.mongo.FindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/mongo/FindOptions;
            0    2     1  sort  Lio/vertx/core/json/JsonObject;
    MethodParameters:
      Name  Flags
      sort  

  public int getLimit();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.mongo.FindOptions this
         0: .line 125
            aload 0 /* this */
            getfield io.vertx.ext.mongo.FindOptions.limit:I
            ireturn
        end local 0 // io.vertx.ext.mongo.FindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/mongo/FindOptions;

  public io.vertx.ext.mongo.FindOptions setLimit(int);
    descriptor: (I)Lio/vertx/ext/mongo/FindOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.mongo.FindOptions this
        start local 1 // int limit
         0: .line 135
            aload 0 /* this */
            iload 1 /* limit */
            putfield io.vertx.ext.mongo.FindOptions.limit:I
         1: .line 136
            aload 0 /* this */
            areturn
        end local 1 // int limit
        end local 0 // io.vertx.ext.mongo.FindOptions this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/ext/mongo/FindOptions;
            0    2     1  limit  I
    MethodParameters:
       Name  Flags
      limit  

  public int getSkip();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.mongo.FindOptions this
         0: .line 145
            aload 0 /* this */
            getfield io.vertx.ext.mongo.FindOptions.skip:I
            ireturn
        end local 0 // io.vertx.ext.mongo.FindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/mongo/FindOptions;

  public io.vertx.ext.mongo.FindOptions setSkip(int);
    descriptor: (I)Lio/vertx/ext/mongo/FindOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.mongo.FindOptions this
        start local 1 // int skip
         0: .line 155
            aload 0 /* this */
            iload 1 /* skip */
            putfield io.vertx.ext.mongo.FindOptions.skip:I
         1: .line 156
            aload 0 /* this */
            areturn
        end local 1 // int skip
        end local 0 // io.vertx.ext.mongo.FindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/mongo/FindOptions;
            0    2     1  skip  I
    MethodParameters:
      Name  Flags
      skip  

  public int getBatchSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.mongo.FindOptions this
         0: .line 163
            aload 0 /* this */
            getfield io.vertx.ext.mongo.FindOptions.batchSize:I
            ireturn
        end local 0 // io.vertx.ext.mongo.FindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/mongo/FindOptions;

  public io.vertx.ext.mongo.FindOptions setBatchSize(int);
    descriptor: (I)Lio/vertx/ext/mongo/FindOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.mongo.FindOptions this
        start local 1 // int batchSize
         0: .line 173
            aload 0 /* this */
            iload 1 /* batchSize */
            putfield io.vertx.ext.mongo.FindOptions.batchSize:I
         1: .line 174
            aload 0 /* this */
            areturn
        end local 1 // int batchSize
        end local 0 // io.vertx.ext.mongo.FindOptions this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lio/vertx/ext/mongo/FindOptions;
            0    2     1  batchSize  I
    MethodParameters:
           Name  Flags
      batchSize  

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.ext.mongo.FindOptions this
        start local 1 // java.lang.Object o
         0: .line 179
            aload 0 /* this */
            aload 1 /* o */
            if_acmpne 1
            iconst_1
            ireturn
         1: .line 180
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            ifnull 2
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* o */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            if_acmpeq 3
      StackMap locals:
      StackMap stack:
         2: iconst_0
            ireturn
         3: .line 182
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast io.vertx.ext.mongo.FindOptions
            astore 2 /* that */
        start local 2 // io.vertx.ext.mongo.FindOptions that
         4: .line 184
            aload 0 /* this */
            getfield io.vertx.ext.mongo.FindOptions.limit:I
            aload 2 /* that */
            getfield io.vertx.ext.mongo.FindOptions.limit:I
            if_icmpeq 5
            iconst_0
            ireturn
         5: .line 185
      StackMap locals: io.vertx.ext.mongo.FindOptions
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.mongo.FindOptions.skip:I
            aload 2 /* that */
            getfield io.vertx.ext.mongo.FindOptions.skip:I
            if_icmpeq 6
            iconst_0
            ireturn
         6: .line 186
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.mongo.FindOptions.batchSize:I
            aload 2 /* that */
            getfield io.vertx.ext.mongo.FindOptions.batchSize:I
            if_icmpeq 7
            iconst_0
            ireturn
         7: .line 187
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.mongo.FindOptions.fields:Lio/vertx/core/json/JsonObject;
            ifnull 8
            aload 0 /* this */
            getfield io.vertx.ext.mongo.FindOptions.fields:Lio/vertx/core/json/JsonObject;
            aload 2 /* that */
            getfield io.vertx.ext.mongo.FindOptions.fields:Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.core.json.JsonObject.equals:(Ljava/lang/Object;)Z
            ifne 10
            goto 9
      StackMap locals:
      StackMap stack:
         8: aload 2 /* that */
            getfield io.vertx.ext.mongo.FindOptions.fields:Lio/vertx/core/json/JsonObject;
            ifnull 10
      StackMap locals:
      StackMap stack:
         9: iconst_0
            ireturn
        10: .line 188
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.mongo.FindOptions.sort:Lio/vertx/core/json/JsonObject;
            ifnull 11
            aload 0 /* this */
            getfield io.vertx.ext.mongo.FindOptions.sort:Lio/vertx/core/json/JsonObject;
            aload 2 /* that */
            getfield io.vertx.ext.mongo.FindOptions.sort:Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.core.json.JsonObject.equals:(Ljava/lang/Object;)Z
            goto 13
      StackMap locals:
      StackMap stack:
        11: aload 2 /* that */
            getfield io.vertx.ext.mongo.FindOptions.sort:Lio/vertx/core/json/JsonObject;
            ifnonnull 12
            iconst_1
            goto 13
      StackMap locals:
      StackMap stack:
        12: iconst_0
      StackMap locals:
      StackMap stack: int
        13: ireturn
        end local 2 // io.vertx.ext.mongo.FindOptions that
        end local 1 // java.lang.Object o
        end local 0 // io.vertx.ext.mongo.FindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lio/vertx/ext/mongo/FindOptions;
            0   14     1     o  Ljava/lang/Object;
            4   14     2  that  Lio/vertx/ext/mongo/FindOptions;
    MethodParameters:
      Name  Flags
      o     

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.ext.mongo.FindOptions this
         0: .line 193
            aload 0 /* this */
            getfield io.vertx.ext.mongo.FindOptions.fields:Lio/vertx/core/json/JsonObject;
            ifnull 1
            aload 0 /* this */
            getfield io.vertx.ext.mongo.FindOptions.fields:Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.core.json.JsonObject.hashCode:()I
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: istore 1 /* result */
        start local 1 // int result
         3: .line 194
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.vertx.ext.mongo.FindOptions.sort:Lio/vertx/core/json/JsonObject;
            ifnull 4
            aload 0 /* this */
            getfield io.vertx.ext.mongo.FindOptions.sort:Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.core.json.JsonObject.hashCode:()I
            goto 5
      StackMap locals: io.vertx.ext.mongo.FindOptions int
      StackMap stack: int
         4: iconst_0
      StackMap locals: io.vertx.ext.mongo.FindOptions int
      StackMap stack: int int
         5: iadd
            istore 1 /* result */
         6: .line 195
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.vertx.ext.mongo.FindOptions.limit:I
            iadd
            istore 1 /* result */
         7: .line 196
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.vertx.ext.mongo.FindOptions.skip:I
            iadd
            istore 1 /* result */
         8: .line 197
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.vertx.ext.mongo.FindOptions.batchSize:I
            iadd
            istore 1 /* result */
         9: .line 198
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // io.vertx.ext.mongo.FindOptions this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Lio/vertx/ext/mongo/FindOptions;
            3   10     1  result  I
}
SourceFile: "FindOptions.java"
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.DataObject(generateConverter = true)