public final class com.mongodb.client.model.DBCollectionFindOptions
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.mongodb.client.model.DBCollectionFindOptions
  super_class: java.lang.Object
{
  private int batchSize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

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

  private com.mongodb.DBObject modifiers;
    descriptor: Lcom/mongodb/DBObject;
    flags: (0x0002) ACC_PRIVATE

  private com.mongodb.DBObject projection;
    descriptor: Lcom/mongodb/DBObject;
    flags: (0x0002) ACC_PRIVATE

  private long maxTimeMS;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private long maxAwaitTimeMS;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

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

  private com.mongodb.DBObject sort;
    descriptor: Lcom/mongodb/DBObject;
    flags: (0x0002) ACC_PRIVATE

  private com.mongodb.CursorType cursorType;
    descriptor: Lcom/mongodb/CursorType;
    flags: (0x0002) ACC_PRIVATE

  private boolean noCursorTimeout;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean oplogReplay;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean partial;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private com.mongodb.ReadPreference readPreference;
    descriptor: Lcom/mongodb/ReadPreference;
    flags: (0x0002) ACC_PRIVATE

  private com.mongodb.ReadConcern readConcern;
    descriptor: Lcom/mongodb/ReadConcern;
    flags: (0x0002) ACC_PRIVATE

  private com.mongodb.client.model.Collation collation;
    descriptor: Lcom/mongodb/client/model/Collation;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String comment;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private com.mongodb.DBObject hint;
    descriptor: Lcom/mongodb/DBObject;
    flags: (0x0002) ACC_PRIVATE

  private com.mongodb.DBObject max;
    descriptor: Lcom/mongodb/DBObject;
    flags: (0x0002) ACC_PRIVATE

  private com.mongodb.DBObject min;
    descriptor: Lcom/mongodb/DBObject;
    flags: (0x0002) ACC_PRIVATE

  private boolean returnKey;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean showRecordId;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
         0: .line 64
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 41
            aload 0 /* this */
            new com.mongodb.BasicDBObject
            dup
            invokespecial com.mongodb.BasicDBObject.<init>:()V
            putfield com.mongodb.client.model.DBCollectionFindOptions.modifiers:Lcom/mongodb/DBObject;
         2: .line 47
            aload 0 /* this */
            getstatic com.mongodb.CursorType.NonTailable:Lcom/mongodb/CursorType;
            putfield com.mongodb.client.model.DBCollectionFindOptions.cursorType:Lcom/mongodb/CursorType;
         3: .line 65
            return
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/mongodb/client/model/DBCollectionFindOptions;

  public com.mongodb.client.model.DBCollectionFindOptions copy();
    descriptor: ()Lcom/mongodb/client/model/DBCollectionFindOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
         0: .line 73
            new com.mongodb.client.model.DBCollectionFindOptions
            dup
            invokespecial com.mongodb.client.model.DBCollectionFindOptions.<init>:()V
            astore 1 /* copiedOptions */
        start local 1 // com.mongodb.client.model.DBCollectionFindOptions copiedOptions
         1: .line 74
            aload 1 /* copiedOptions */
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.batchSize:I
            invokevirtual com.mongodb.client.model.DBCollectionFindOptions.batchSize:(I)Lcom/mongodb/client/model/DBCollectionFindOptions;
            pop
         2: .line 75
            aload 1 /* copiedOptions */
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.limit:I
            invokevirtual com.mongodb.client.model.DBCollectionFindOptions.limit:(I)Lcom/mongodb/client/model/DBCollectionFindOptions;
            pop
         3: .line 76
            aload 1 /* copiedOptions */
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.modifiers:Lcom/mongodb/DBObject;
            invokevirtual com.mongodb.client.model.DBCollectionFindOptions.modifiers:(Lcom/mongodb/DBObject;)Lcom/mongodb/client/model/DBCollectionFindOptions;
            pop
         4: .line 77
            aload 1 /* copiedOptions */
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.projection:Lcom/mongodb/DBObject;
            invokevirtual com.mongodb.client.model.DBCollectionFindOptions.projection:(Lcom/mongodb/DBObject;)Lcom/mongodb/client/model/DBCollectionFindOptions;
            pop
         5: .line 78
            aload 1 /* copiedOptions */
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.maxTimeMS:J
            getstatic java.util.concurrent.TimeUnit.MILLISECONDS:Ljava/util/concurrent/TimeUnit;
            invokevirtual com.mongodb.client.model.DBCollectionFindOptions.maxTime:(JLjava/util/concurrent/TimeUnit;)Lcom/mongodb/client/model/DBCollectionFindOptions;
            pop
         6: .line 79
            aload 1 /* copiedOptions */
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.maxAwaitTimeMS:J
            getstatic java.util.concurrent.TimeUnit.MILLISECONDS:Ljava/util/concurrent/TimeUnit;
            invokevirtual com.mongodb.client.model.DBCollectionFindOptions.maxAwaitTime:(JLjava/util/concurrent/TimeUnit;)Lcom/mongodb/client/model/DBCollectionFindOptions;
            pop
         7: .line 80
            aload 1 /* copiedOptions */
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.skip:I
            invokevirtual com.mongodb.client.model.DBCollectionFindOptions.skip:(I)Lcom/mongodb/client/model/DBCollectionFindOptions;
            pop
         8: .line 81
            aload 1 /* copiedOptions */
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.sort:Lcom/mongodb/DBObject;
            invokevirtual com.mongodb.client.model.DBCollectionFindOptions.sort:(Lcom/mongodb/DBObject;)Lcom/mongodb/client/model/DBCollectionFindOptions;
            pop
         9: .line 82
            aload 1 /* copiedOptions */
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.cursorType:Lcom/mongodb/CursorType;
            invokevirtual com.mongodb.client.model.DBCollectionFindOptions.cursorType:(Lcom/mongodb/CursorType;)Lcom/mongodb/client/model/DBCollectionFindOptions;
            pop
        10: .line 83
            aload 1 /* copiedOptions */
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.noCursorTimeout:Z
            invokevirtual com.mongodb.client.model.DBCollectionFindOptions.noCursorTimeout:(Z)Lcom/mongodb/client/model/DBCollectionFindOptions;
            pop
        11: .line 84
            aload 1 /* copiedOptions */
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.oplogReplay:Z
            invokevirtual com.mongodb.client.model.DBCollectionFindOptions.oplogReplay:(Z)Lcom/mongodb/client/model/DBCollectionFindOptions;
            pop
        12: .line 85
            aload 1 /* copiedOptions */
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.partial:Z
            invokevirtual com.mongodb.client.model.DBCollectionFindOptions.partial:(Z)Lcom/mongodb/client/model/DBCollectionFindOptions;
            pop
        13: .line 86
            aload 1 /* copiedOptions */
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.readPreference:Lcom/mongodb/ReadPreference;
            invokevirtual com.mongodb.client.model.DBCollectionFindOptions.readPreference:(Lcom/mongodb/ReadPreference;)Lcom/mongodb/client/model/DBCollectionFindOptions;
            pop
        14: .line 87
            aload 1 /* copiedOptions */
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.readConcern:Lcom/mongodb/ReadConcern;
            invokevirtual com.mongodb.client.model.DBCollectionFindOptions.readConcern:(Lcom/mongodb/ReadConcern;)Lcom/mongodb/client/model/DBCollectionFindOptions;
            pop
        15: .line 88
            aload 1 /* copiedOptions */
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.collation:Lcom/mongodb/client/model/Collation;
            invokevirtual com.mongodb.client.model.DBCollectionFindOptions.collation:(Lcom/mongodb/client/model/Collation;)Lcom/mongodb/client/model/DBCollectionFindOptions;
            pop
        16: .line 89
            aload 1 /* copiedOptions */
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.comment:Ljava/lang/String;
            invokevirtual com.mongodb.client.model.DBCollectionFindOptions.comment:(Ljava/lang/String;)Lcom/mongodb/client/model/DBCollectionFindOptions;
            pop
        17: .line 90
            aload 1 /* copiedOptions */
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.hint:Lcom/mongodb/DBObject;
            invokevirtual com.mongodb.client.model.DBCollectionFindOptions.hint:(Lcom/mongodb/DBObject;)Lcom/mongodb/client/model/DBCollectionFindOptions;
            pop
        18: .line 91
            aload 1 /* copiedOptions */
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.max:Lcom/mongodb/DBObject;
            invokevirtual com.mongodb.client.model.DBCollectionFindOptions.max:(Lcom/mongodb/DBObject;)Lcom/mongodb/client/model/DBCollectionFindOptions;
            pop
        19: .line 92
            aload 1 /* copiedOptions */
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.min:Lcom/mongodb/DBObject;
            invokevirtual com.mongodb.client.model.DBCollectionFindOptions.min:(Lcom/mongodb/DBObject;)Lcom/mongodb/client/model/DBCollectionFindOptions;
            pop
        20: .line 93
            aload 1 /* copiedOptions */
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.returnKey:Z
            invokevirtual com.mongodb.client.model.DBCollectionFindOptions.returnKey:(Z)Lcom/mongodb/client/model/DBCollectionFindOptions;
            pop
        21: .line 94
            aload 1 /* copiedOptions */
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.showRecordId:Z
            invokevirtual com.mongodb.client.model.DBCollectionFindOptions.showRecordId:(Z)Lcom/mongodb/client/model/DBCollectionFindOptions;
            pop
        22: .line 95
            aload 1 /* copiedOptions */
            areturn
        end local 1 // com.mongodb.client.model.DBCollectionFindOptions copiedOptions
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   23     0           this  Lcom/mongodb/client/model/DBCollectionFindOptions;
            1   23     1  copiedOptions  Lcom/mongodb/client/model/DBCollectionFindOptions;

  public int getLimit();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
         0: .line 105
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.limit:I
            ireturn
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/client/model/DBCollectionFindOptions;

  public com.mongodb.client.model.DBCollectionFindOptions limit(int);
    descriptor: (I)Lcom/mongodb/client/model/DBCollectionFindOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
        start local 1 // int limit
         0: .line 116
            aload 0 /* this */
            iload 1 /* limit */
            putfield com.mongodb.client.model.DBCollectionFindOptions.limit:I
         1: .line 117
            aload 0 /* this */
            areturn
        end local 1 // int limit
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/mongodb/client/model/DBCollectionFindOptions;
            0    2     1  limit  I
    MethodParameters:
       Name  Flags
      limit  final

  public int getSkip();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
         0: .line 127
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.skip:I
            ireturn
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/client/model/DBCollectionFindOptions;

  public com.mongodb.client.model.DBCollectionFindOptions skip(int);
    descriptor: (I)Lcom/mongodb/client/model/DBCollectionFindOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
        start local 1 // int skip
         0: .line 138
            aload 0 /* this */
            iload 1 /* skip */
            putfield com.mongodb.client.model.DBCollectionFindOptions.skip:I
         1: .line 139
            aload 0 /* this */
            areturn
        end local 1 // int skip
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/mongodb/client/model/DBCollectionFindOptions;
            0    2     1  skip  I
    MethodParameters:
      Name  Flags
      skip  final

  public long getMaxTime(java.util.concurrent.TimeUnit);
    descriptor: (Ljava/util/concurrent/TimeUnit;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
        start local 1 // java.util.concurrent.TimeUnit timeUnit
         0: .line 150
            ldc "timeUnit"
            aload 1 /* timeUnit */
            invokestatic com.mongodb.assertions.Assertions.notNull:(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 151
            aload 1 /* timeUnit */
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.maxTimeMS:J
            getstatic java.util.concurrent.TimeUnit.MILLISECONDS:Ljava/util/concurrent/TimeUnit;
            invokevirtual java.util.concurrent.TimeUnit.convert:(JLjava/util/concurrent/TimeUnit;)J
            lreturn
        end local 1 // java.util.concurrent.TimeUnit timeUnit
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lcom/mongodb/client/model/DBCollectionFindOptions;
            0    2     1  timeUnit  Ljava/util/concurrent/TimeUnit;
    MethodParameters:
          Name  Flags
      timeUnit  final

  public com.mongodb.client.model.DBCollectionFindOptions maxTime(long, java.util.concurrent.TimeUnit);
    descriptor: (JLjava/util/concurrent/TimeUnit;)Lcom/mongodb/client/model/DBCollectionFindOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
        start local 1 // long maxTime
        start local 3 // java.util.concurrent.TimeUnit timeUnit
         0: .line 163
            ldc "timeUnit"
            aload 3 /* timeUnit */
            invokestatic com.mongodb.assertions.Assertions.notNull:(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 164
            ldc "maxTime > = 0"
            lload 1 /* maxTime */
            lconst_0
            lcmp
            iflt 2
            iconst_1
            goto 3
      StackMap locals:
      StackMap stack: java.lang.String
         2: iconst_0
      StackMap locals: com.mongodb.client.model.DBCollectionFindOptions long java.util.concurrent.TimeUnit
      StackMap stack: java.lang.String int
         3: invokestatic com.mongodb.assertions.Assertions.isTrueArgument:(Ljava/lang/String;Z)V
         4: .line 165
            aload 0 /* this */
            getstatic java.util.concurrent.TimeUnit.MILLISECONDS:Ljava/util/concurrent/TimeUnit;
            lload 1 /* maxTime */
            aload 3 /* timeUnit */
            invokevirtual java.util.concurrent.TimeUnit.convert:(JLjava/util/concurrent/TimeUnit;)J
            putfield com.mongodb.client.model.DBCollectionFindOptions.maxTimeMS:J
         5: .line 166
            aload 0 /* this */
            areturn
        end local 3 // java.util.concurrent.TimeUnit timeUnit
        end local 1 // long maxTime
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lcom/mongodb/client/model/DBCollectionFindOptions;
            0    6     1   maxTime  J
            0    6     3  timeUnit  Ljava/util/concurrent/TimeUnit;
    MethodParameters:
          Name  Flags
      maxTime   final
      timeUnit  final

  public long getMaxAwaitTime(java.util.concurrent.TimeUnit);
    descriptor: (Ljava/util/concurrent/TimeUnit;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
        start local 1 // java.util.concurrent.TimeUnit timeUnit
         0: .line 186
            ldc "timeUnit"
            aload 1 /* timeUnit */
            invokestatic com.mongodb.assertions.Assertions.notNull:(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 187
            aload 1 /* timeUnit */
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.maxAwaitTimeMS:J
            getstatic java.util.concurrent.TimeUnit.MILLISECONDS:Ljava/util/concurrent/TimeUnit;
            invokevirtual java.util.concurrent.TimeUnit.convert:(JLjava/util/concurrent/TimeUnit;)J
            lreturn
        end local 1 // java.util.concurrent.TimeUnit timeUnit
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lcom/mongodb/client/model/DBCollectionFindOptions;
            0    2     1  timeUnit  Ljava/util/concurrent/TimeUnit;
    MethodParameters:
          Name  Flags
      timeUnit  final

  public com.mongodb.client.model.DBCollectionFindOptions maxAwaitTime(long, java.util.concurrent.TimeUnit);
    descriptor: (JLjava/util/concurrent/TimeUnit;)Lcom/mongodb/client/model/DBCollectionFindOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
        start local 1 // long maxAwaitTime
        start local 3 // java.util.concurrent.TimeUnit timeUnit
         0: .line 200
            ldc "timeUnit"
            aload 3 /* timeUnit */
            invokestatic com.mongodb.assertions.Assertions.notNull:(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 201
            ldc "maxAwaitTime > = 0"
            lload 1 /* maxAwaitTime */
            lconst_0
            lcmp
            iflt 2
            iconst_1
            goto 3
      StackMap locals:
      StackMap stack: java.lang.String
         2: iconst_0
      StackMap locals: com.mongodb.client.model.DBCollectionFindOptions long java.util.concurrent.TimeUnit
      StackMap stack: java.lang.String int
         3: invokestatic com.mongodb.assertions.Assertions.isTrueArgument:(Ljava/lang/String;Z)V
         4: .line 202
            aload 0 /* this */
            getstatic java.util.concurrent.TimeUnit.MILLISECONDS:Ljava/util/concurrent/TimeUnit;
            lload 1 /* maxAwaitTime */
            aload 3 /* timeUnit */
            invokevirtual java.util.concurrent.TimeUnit.convert:(JLjava/util/concurrent/TimeUnit;)J
            putfield com.mongodb.client.model.DBCollectionFindOptions.maxAwaitTimeMS:J
         5: .line 203
            aload 0 /* this */
            areturn
        end local 3 // java.util.concurrent.TimeUnit timeUnit
        end local 1 // long maxAwaitTime
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    6     0          this  Lcom/mongodb/client/model/DBCollectionFindOptions;
            0    6     1  maxAwaitTime  J
            0    6     3      timeUnit  Ljava/util/concurrent/TimeUnit;
    MethodParameters:
              Name  Flags
      maxAwaitTime  final
      timeUnit      final

  public int getBatchSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
         0: .line 214
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.batchSize:I
            ireturn
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/client/model/DBCollectionFindOptions;

  public com.mongodb.client.model.DBCollectionFindOptions batchSize(int);
    descriptor: (I)Lcom/mongodb/client/model/DBCollectionFindOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
        start local 1 // int batchSize
         0: .line 225
            aload 0 /* this */
            iload 1 /* batchSize */
            putfield com.mongodb.client.model.DBCollectionFindOptions.batchSize:I
         1: .line 226
            aload 0 /* this */
            areturn
        end local 1 // int batchSize
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lcom/mongodb/client/model/DBCollectionFindOptions;
            0    2     1  batchSize  I
    MethodParameters:
           Name  Flags
      batchSize  final

  public com.mongodb.DBObject getModifiers();
    descriptor: ()Lcom/mongodb/DBObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
         0: .line 238
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.modifiers:Lcom/mongodb/DBObject;
            areturn
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/client/model/DBCollectionFindOptions;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()

  public com.mongodb.client.model.DBCollectionFindOptions modifiers(com.mongodb.DBObject);
    descriptor: (Lcom/mongodb/DBObject;)Lcom/mongodb/client/model/DBCollectionFindOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
        start local 1 // com.mongodb.DBObject modifiers
         0: .line 251
            aload 0 /* this */
            ldc "modifiers"
            aload 1 /* modifiers */
            invokestatic com.mongodb.assertions.Assertions.notNull:(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.mongodb.DBObject
            putfield com.mongodb.client.model.DBCollectionFindOptions.modifiers:Lcom/mongodb/DBObject;
         1: .line 252
            aload 0 /* this */
            areturn
        end local 1 // com.mongodb.DBObject modifiers
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lcom/mongodb/client/model/DBCollectionFindOptions;
            0    2     1  modifiers  Lcom/mongodb/DBObject;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    RuntimeVisibleParameterAnnotations: 
      0:
        com.mongodb.lang.Nullable()
    MethodParameters:
           Name  Flags
      modifiers  final

  public com.mongodb.DBObject getProjection();
    descriptor: ()Lcom/mongodb/DBObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
         0: .line 263
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.projection:Lcom/mongodb/DBObject;
            areturn
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/client/model/DBCollectionFindOptions;
    RuntimeVisibleAnnotations: 
      com.mongodb.lang.Nullable()

  public com.mongodb.client.model.DBCollectionFindOptions projection(com.mongodb.DBObject);
    descriptor: (Lcom/mongodb/DBObject;)Lcom/mongodb/client/model/DBCollectionFindOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
        start local 1 // com.mongodb.DBObject projection
         0: .line 274
            aload 0 /* this */
            aload 1 /* projection */
            putfield com.mongodb.client.model.DBCollectionFindOptions.projection:Lcom/mongodb/DBObject;
         1: .line 275
            aload 0 /* this */
            areturn
        end local 1 // com.mongodb.DBObject projection
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lcom/mongodb/client/model/DBCollectionFindOptions;
            0    2     1  projection  Lcom/mongodb/DBObject;
    RuntimeVisibleParameterAnnotations: 
      0:
        com.mongodb.lang.Nullable()
    MethodParameters:
            Name  Flags
      projection  final

  public com.mongodb.DBObject getSort();
    descriptor: ()Lcom/mongodb/DBObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
         0: .line 287
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.sort:Lcom/mongodb/DBObject;
            areturn
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/client/model/DBCollectionFindOptions;
    RuntimeVisibleAnnotations: 
      com.mongodb.lang.Nullable()

  public com.mongodb.client.model.DBCollectionFindOptions sort(com.mongodb.DBObject);
    descriptor: (Lcom/mongodb/DBObject;)Lcom/mongodb/client/model/DBCollectionFindOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
        start local 1 // com.mongodb.DBObject sort
         0: .line 298
            aload 0 /* this */
            aload 1 /* sort */
            putfield com.mongodb.client.model.DBCollectionFindOptions.sort:Lcom/mongodb/DBObject;
         1: .line 299
            aload 0 /* this */
            areturn
        end local 1 // com.mongodb.DBObject sort
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/mongodb/client/model/DBCollectionFindOptions;
            0    2     1  sort  Lcom/mongodb/DBObject;
    RuntimeVisibleParameterAnnotations: 
      0:
        com.mongodb.lang.Nullable()
    MethodParameters:
      Name  Flags
      sort  final

  public boolean isNoCursorTimeout();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
         0: .line 309
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.noCursorTimeout:Z
            ireturn
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/client/model/DBCollectionFindOptions;

  public com.mongodb.client.model.DBCollectionFindOptions noCursorTimeout(boolean);
    descriptor: (Z)Lcom/mongodb/client/model/DBCollectionFindOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
        start local 1 // boolean noCursorTimeout
         0: .line 320
            aload 0 /* this */
            iload 1 /* noCursorTimeout */
            putfield com.mongodb.client.model.DBCollectionFindOptions.noCursorTimeout:Z
         1: .line 321
            aload 0 /* this */
            areturn
        end local 1 // boolean noCursorTimeout
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lcom/mongodb/client/model/DBCollectionFindOptions;
            0    2     1  noCursorTimeout  Z
    MethodParameters:
                 Name  Flags
      noCursorTimeout  final

  public boolean isOplogReplay();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
         0: .line 330
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.oplogReplay:Z
            ireturn
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/client/model/DBCollectionFindOptions;

  public com.mongodb.client.model.DBCollectionFindOptions oplogReplay(boolean);
    descriptor: (Z)Lcom/mongodb/client/model/DBCollectionFindOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
        start local 1 // boolean oplogReplay
         0: .line 340
            aload 0 /* this */
            iload 1 /* oplogReplay */
            putfield com.mongodb.client.model.DBCollectionFindOptions.oplogReplay:Z
         1: .line 341
            aload 0 /* this */
            areturn
        end local 1 // boolean oplogReplay
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lcom/mongodb/client/model/DBCollectionFindOptions;
            0    2     1  oplogReplay  Z
    MethodParameters:
             Name  Flags
      oplogReplay  final

  public boolean isPartial();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
         0: .line 350
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.partial:Z
            ireturn
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/client/model/DBCollectionFindOptions;

  public com.mongodb.client.model.DBCollectionFindOptions partial(boolean);
    descriptor: (Z)Lcom/mongodb/client/model/DBCollectionFindOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
        start local 1 // boolean partial
         0: .line 360
            aload 0 /* this */
            iload 1 /* partial */
            putfield com.mongodb.client.model.DBCollectionFindOptions.partial:Z
         1: .line 361
            aload 0 /* this */
            areturn
        end local 1 // boolean partial
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lcom/mongodb/client/model/DBCollectionFindOptions;
            0    2     1  partial  Z
    MethodParameters:
         Name  Flags
      partial  final

  public com.mongodb.CursorType getCursorType();
    descriptor: ()Lcom/mongodb/CursorType;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
         0: .line 370
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.cursorType:Lcom/mongodb/CursorType;
            areturn
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/client/model/DBCollectionFindOptions;

  public com.mongodb.client.model.DBCollectionFindOptions cursorType(com.mongodb.CursorType);
    descriptor: (Lcom/mongodb/CursorType;)Lcom/mongodb/client/model/DBCollectionFindOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
        start local 1 // com.mongodb.CursorType cursorType
         0: .line 380
            aload 0 /* this */
            ldc "cursorType"
            aload 1 /* cursorType */
            invokestatic com.mongodb.assertions.Assertions.notNull:(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.mongodb.CursorType
            putfield com.mongodb.client.model.DBCollectionFindOptions.cursorType:Lcom/mongodb/CursorType;
         1: .line 381
            aload 0 /* this */
            areturn
        end local 1 // com.mongodb.CursorType cursorType
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lcom/mongodb/client/model/DBCollectionFindOptions;
            0    2     1  cursorType  Lcom/mongodb/CursorType;
    MethodParameters:
            Name  Flags
      cursorType  final

  public com.mongodb.ReadPreference getReadPreference();
    descriptor: ()Lcom/mongodb/ReadPreference;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
         0: .line 391
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.readPreference:Lcom/mongodb/ReadPreference;
            areturn
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/client/model/DBCollectionFindOptions;
    RuntimeVisibleAnnotations: 
      com.mongodb.lang.Nullable()

  public com.mongodb.client.model.DBCollectionFindOptions readPreference(com.mongodb.ReadPreference);
    descriptor: (Lcom/mongodb/ReadPreference;)Lcom/mongodb/client/model/DBCollectionFindOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
        start local 1 // com.mongodb.ReadPreference readPreference
         0: .line 401
            aload 0 /* this */
            aload 1 /* readPreference */
            putfield com.mongodb.client.model.DBCollectionFindOptions.readPreference:Lcom/mongodb/ReadPreference;
         1: .line 402
            aload 0 /* this */
            areturn
        end local 1 // com.mongodb.ReadPreference readPreference
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lcom/mongodb/client/model/DBCollectionFindOptions;
            0    2     1  readPreference  Lcom/mongodb/ReadPreference;
    RuntimeVisibleParameterAnnotations: 
      0:
        com.mongodb.lang.Nullable()
    MethodParameters:
                Name  Flags
      readPreference  final

  public com.mongodb.ReadConcern getReadConcern();
    descriptor: ()Lcom/mongodb/ReadConcern;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
         0: .line 413
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.readConcern:Lcom/mongodb/ReadConcern;
            areturn
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/client/model/DBCollectionFindOptions;
    RuntimeVisibleAnnotations: 
      com.mongodb.lang.Nullable()

  public com.mongodb.client.model.DBCollectionFindOptions readConcern(com.mongodb.ReadConcern);
    descriptor: (Lcom/mongodb/ReadConcern;)Lcom/mongodb/client/model/DBCollectionFindOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
        start local 1 // com.mongodb.ReadConcern readConcern
         0: .line 424
            aload 0 /* this */
            aload 1 /* readConcern */
            putfield com.mongodb.client.model.DBCollectionFindOptions.readConcern:Lcom/mongodb/ReadConcern;
         1: .line 425
            aload 0 /* this */
            areturn
        end local 1 // com.mongodb.ReadConcern readConcern
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lcom/mongodb/client/model/DBCollectionFindOptions;
            0    2     1  readConcern  Lcom/mongodb/ReadConcern;
    RuntimeVisibleParameterAnnotations: 
      0:
        com.mongodb.lang.Nullable()
    MethodParameters:
             Name  Flags
      readConcern  final

  public com.mongodb.client.model.Collation getCollation();
    descriptor: ()Lcom/mongodb/client/model/Collation;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
         0: .line 436
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.collation:Lcom/mongodb/client/model/Collation;
            areturn
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/client/model/DBCollectionFindOptions;
    RuntimeVisibleAnnotations: 
      com.mongodb.lang.Nullable()

  public com.mongodb.client.model.DBCollectionFindOptions collation(com.mongodb.client.model.Collation);
    descriptor: (Lcom/mongodb/client/model/Collation;)Lcom/mongodb/client/model/DBCollectionFindOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
        start local 1 // com.mongodb.client.model.Collation collation
         0: .line 447
            aload 0 /* this */
            aload 1 /* collation */
            putfield com.mongodb.client.model.DBCollectionFindOptions.collation:Lcom/mongodb/client/model/Collation;
         1: .line 448
            aload 0 /* this */
            areturn
        end local 1 // com.mongodb.client.model.Collation collation
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lcom/mongodb/client/model/DBCollectionFindOptions;
            0    2     1  collation  Lcom/mongodb/client/model/Collation;
    RuntimeVisibleParameterAnnotations: 
      0:
        com.mongodb.lang.Nullable()
    MethodParameters:
           Name  Flags
      collation  final

  public java.lang.String getComment();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
         0: .line 459
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.comment:Ljava/lang/String;
            areturn
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/client/model/DBCollectionFindOptions;
    RuntimeVisibleAnnotations: 
      com.mongodb.lang.Nullable()

  public com.mongodb.client.model.DBCollectionFindOptions comment(java.lang.String);
    descriptor: (Ljava/lang/String;)Lcom/mongodb/client/model/DBCollectionFindOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
        start local 1 // java.lang.String comment
         0: .line 470
            aload 0 /* this */
            aload 1 /* comment */
            putfield com.mongodb.client.model.DBCollectionFindOptions.comment:Ljava/lang/String;
         1: .line 471
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String comment
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lcom/mongodb/client/model/DBCollectionFindOptions;
            0    2     1  comment  Ljava/lang/String;
    RuntimeVisibleParameterAnnotations: 
      0:
        com.mongodb.lang.Nullable()
    MethodParameters:
         Name  Flags
      comment  final

  public com.mongodb.DBObject getHint();
    descriptor: ()Lcom/mongodb/DBObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
         0: .line 482
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.hint:Lcom/mongodb/DBObject;
            areturn
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/client/model/DBCollectionFindOptions;
    RuntimeVisibleAnnotations: 
      com.mongodb.lang.Nullable()

  public com.mongodb.client.model.DBCollectionFindOptions hint(com.mongodb.DBObject);
    descriptor: (Lcom/mongodb/DBObject;)Lcom/mongodb/client/model/DBCollectionFindOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
        start local 1 // com.mongodb.DBObject hint
         0: .line 493
            aload 0 /* this */
            aload 1 /* hint */
            putfield com.mongodb.client.model.DBCollectionFindOptions.hint:Lcom/mongodb/DBObject;
         1: .line 494
            aload 0 /* this */
            areturn
        end local 1 // com.mongodb.DBObject hint
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/mongodb/client/model/DBCollectionFindOptions;
            0    2     1  hint  Lcom/mongodb/DBObject;
    RuntimeVisibleParameterAnnotations: 
      0:
        com.mongodb.lang.Nullable()
    MethodParameters:
      Name  Flags
      hint  final

  public com.mongodb.DBObject getMax();
    descriptor: ()Lcom/mongodb/DBObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
         0: .line 505
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.max:Lcom/mongodb/DBObject;
            areturn
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/client/model/DBCollectionFindOptions;
    RuntimeVisibleAnnotations: 
      com.mongodb.lang.Nullable()

  public com.mongodb.client.model.DBCollectionFindOptions max(com.mongodb.DBObject);
    descriptor: (Lcom/mongodb/DBObject;)Lcom/mongodb/client/model/DBCollectionFindOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
        start local 1 // com.mongodb.DBObject max
         0: .line 516
            aload 0 /* this */
            aload 1 /* max */
            putfield com.mongodb.client.model.DBCollectionFindOptions.max:Lcom/mongodb/DBObject;
         1: .line 517
            aload 0 /* this */
            areturn
        end local 1 // com.mongodb.DBObject max
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/mongodb/client/model/DBCollectionFindOptions;
            0    2     1   max  Lcom/mongodb/DBObject;
    RuntimeVisibleParameterAnnotations: 
      0:
        com.mongodb.lang.Nullable()
    MethodParameters:
      Name  Flags
      max   final

  public com.mongodb.DBObject getMin();
    descriptor: ()Lcom/mongodb/DBObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
         0: .line 528
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.min:Lcom/mongodb/DBObject;
            areturn
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/client/model/DBCollectionFindOptions;
    RuntimeVisibleAnnotations: 
      com.mongodb.lang.Nullable()

  public com.mongodb.client.model.DBCollectionFindOptions min(com.mongodb.DBObject);
    descriptor: (Lcom/mongodb/DBObject;)Lcom/mongodb/client/model/DBCollectionFindOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
        start local 1 // com.mongodb.DBObject min
         0: .line 539
            aload 0 /* this */
            aload 1 /* min */
            putfield com.mongodb.client.model.DBCollectionFindOptions.min:Lcom/mongodb/DBObject;
         1: .line 540
            aload 0 /* this */
            areturn
        end local 1 // com.mongodb.DBObject min
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/mongodb/client/model/DBCollectionFindOptions;
            0    2     1   min  Lcom/mongodb/DBObject;
    RuntimeVisibleParameterAnnotations: 
      0:
        com.mongodb.lang.Nullable()
    MethodParameters:
      Name  Flags
      min   final

  public boolean isReturnKey();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
         0: .line 552
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.returnKey:Z
            ireturn
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/client/model/DBCollectionFindOptions;

  public com.mongodb.client.model.DBCollectionFindOptions returnKey(boolean);
    descriptor: (Z)Lcom/mongodb/client/model/DBCollectionFindOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
        start local 1 // boolean returnKey
         0: .line 563
            aload 0 /* this */
            iload 1 /* returnKey */
            putfield com.mongodb.client.model.DBCollectionFindOptions.returnKey:Z
         1: .line 564
            aload 0 /* this */
            areturn
        end local 1 // boolean returnKey
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lcom/mongodb/client/model/DBCollectionFindOptions;
            0    2     1  returnKey  Z
    MethodParameters:
           Name  Flags
      returnKey  final

  public boolean isShowRecordId();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
         0: .line 577
            aload 0 /* this */
            getfield com.mongodb.client.model.DBCollectionFindOptions.showRecordId:Z
            ireturn
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/client/model/DBCollectionFindOptions;

  public com.mongodb.client.model.DBCollectionFindOptions showRecordId(boolean);
    descriptor: (Z)Lcom/mongodb/client/model/DBCollectionFindOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.mongodb.client.model.DBCollectionFindOptions this
        start local 1 // boolean showRecordId
         0: .line 588
            aload 0 /* this */
            iload 1 /* showRecordId */
            putfield com.mongodb.client.model.DBCollectionFindOptions.showRecordId:Z
         1: .line 589
            aload 0 /* this */
            areturn
        end local 1 // boolean showRecordId
        end local 0 // com.mongodb.client.model.DBCollectionFindOptions this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lcom/mongodb/client/model/DBCollectionFindOptions;
            0    2     1  showRecordId  Z
    MethodParameters:
              Name  Flags
      showRecordId  final
}
SourceFile: "DBCollectionFindOptions.java"