public class com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet
  super_class: java.lang.Object
{
  public final java.nio.ByteBuffer[] array;
    descriptor: [Ljava/nio/ByteBuffer;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

  public final int offset;
    descriptor: I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

  public final int length;
    descriptor: I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

  public void <init>(java.nio.ByteBuffer[], int, int);
    descriptor: ([Ljava/nio/ByteBuffer;II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet this
        start local 1 // java.nio.ByteBuffer[] array
        start local 2 // int offset
        start local 3 // int length
         0: .line 31
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 32
            aload 1 /* array */
            ifnonnull 3
         2: .line 33
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
         3: .line 35
      StackMap locals: com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet java.nio.ByteBuffer[] int int
      StackMap stack:
            aload 1 /* array */
            arraylength
            iload 2 /* offset */
            if_icmpge 5
         4: .line 36
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         5: .line 38
      StackMap locals:
      StackMap stack:
            aload 1 /* array */
            arraylength
            iload 2 /* offset */
            iload 3 /* length */
            iadd
            if_icmpge 7
         6: .line 39
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         7: .line 41
      StackMap locals:
      StackMap stack:
            iload 2 /* offset */
            istore 4 /* i */
        start local 4 // int i
         8: goto 12
         9: .line 42
      StackMap locals: int
      StackMap stack:
            aload 1 /* array */
            iload 4 /* i */
            aaload
            ifnonnull 11
        10: .line 43
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
        11: .line 41
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 4 /* i */
            iload 2 /* offset */
            iload 3 /* length */
            iadd
            if_icmplt 9
        end local 4 // int i
        13: .line 46
            aload 0 /* this */
            aload 1 /* array */
            putfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.array:[Ljava/nio/ByteBuffer;
        14: .line 47
            aload 0 /* this */
            iload 2 /* offset */
            putfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.offset:I
        15: .line 48
            aload 0 /* this */
            iload 3 /* length */
            putfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.length:I
        16: .line 49
            return
        end local 3 // int length
        end local 2 // int offset
        end local 1 // java.nio.ByteBuffer[] array
        end local 0 // com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   17     0    this  Lcom/mongodb/internal/connection/tlschannel/impl/ByteBufferSet;
            0   17     1   array  [Ljava/nio/ByteBuffer;
            0   17     2  offset  I
            0   17     3  length  I
            8   13     4       i  I
    MethodParameters:
        Name  Flags
      array   final
      offset  final
      length  final

  public void <init>(java.nio.ByteBuffer[]);
    descriptor: ([Ljava/nio/ByteBuffer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet this
        start local 1 // java.nio.ByteBuffer[] array
         0: .line 52
            aload 0 /* this */
            aload 1 /* array */
            iconst_0
            aload 1 /* array */
            arraylength
            invokespecial com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.<init>:([Ljava/nio/ByteBuffer;II)V
         1: .line 53
            return
        end local 1 // java.nio.ByteBuffer[] array
        end local 0 // com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/mongodb/internal/connection/tlschannel/impl/ByteBufferSet;
            0    2     1  array  [Ljava/nio/ByteBuffer;
    MethodParameters:
       Name  Flags
      array  final

  public void <init>(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet this
        start local 1 // java.nio.ByteBuffer buffer
         0: .line 56
            aload 0 /* this */
            iconst_1
            anewarray java.nio.ByteBuffer
            dup
            iconst_0
            aload 1 /* buffer */
            aastore
            invokespecial com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.<init>:([Ljava/nio/ByteBuffer;)V
         1: .line 57
            return
        end local 1 // java.nio.ByteBuffer buffer
        end local 0 // com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/mongodb/internal/connection/tlschannel/impl/ByteBufferSet;
            0    2     1  buffer  Ljava/nio/ByteBuffer;
    MethodParameters:
        Name  Flags
      buffer  final

  public long remaining();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet this
         0: .line 60
            lconst_0
            lstore 1 /* ret */
        start local 1 // long ret
         1: .line 61
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.offset:I
            istore 3 /* i */
        start local 3 // int i
         2: goto 5
         3: .line 62
      StackMap locals: long int
      StackMap stack:
            lload 1 /* ret */
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.array:[Ljava/nio/ByteBuffer;
            iload 3 /* i */
            aaload
            invokevirtual java.nio.ByteBuffer.remaining:()I
            i2l
            ladd
            lstore 1 /* ret */
         4: .line 61
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* i */
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.offset:I
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.length:I
            iadd
            if_icmplt 3
        end local 3 // int i
         6: .line 64
            lload 1 /* ret */
            lreturn
        end local 1 // long ret
        end local 0 // com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/mongodb/internal/connection/tlschannel/impl/ByteBufferSet;
            1    7     1   ret  J
            2    6     3     i  I

  public int putRemaining(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet this
        start local 1 // java.nio.ByteBuffer from
         0: .line 68
            iconst_0
            istore 2 /* totalBytes */
        start local 2 // int totalBytes
         1: .line 69
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.offset:I
            istore 3 /* i */
        start local 3 // int i
         2: goto 10
         3: .line 70
      StackMap locals: int int
      StackMap stack:
            aload 1 /* from */
            invokevirtual java.nio.ByteBuffer.hasRemaining:()Z
            ifne 5
         4: .line 71
            goto 11
         5: .line 73
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.array:[Ljava/nio/ByteBuffer;
            iload 3 /* i */
            aaload
            astore 4 /* dstBuffer */
        start local 4 // java.nio.ByteBuffer dstBuffer
         6: .line 74
            aload 1 /* from */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            aload 4 /* dstBuffer */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            invokestatic java.lang.Math.min:(II)I
            istore 5 /* bytes */
        start local 5 // int bytes
         7: .line 75
            aload 1 /* from */
            aload 4 /* dstBuffer */
            iload 5 /* bytes */
            invokestatic com.mongodb.internal.connection.tlschannel.impl.ByteBufferUtil.copy:(Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;I)V
         8: .line 76
            iload 2 /* totalBytes */
            iload 5 /* bytes */
            iadd
            istore 2 /* totalBytes */
        end local 5 // int bytes
        end local 4 // java.nio.ByteBuffer dstBuffer
         9: .line 69
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* i */
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.offset:I
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.length:I
            iadd
            if_icmplt 3
        end local 3 // int i
        11: .line 78
      StackMap locals:
      StackMap stack:
            iload 2 /* totalBytes */
            ireturn
        end local 2 // int totalBytes
        end local 1 // java.nio.ByteBuffer from
        end local 0 // com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   12     0        this  Lcom/mongodb/internal/connection/tlschannel/impl/ByteBufferSet;
            0   12     1        from  Ljava/nio/ByteBuffer;
            1   12     2  totalBytes  I
            2   11     3           i  I
            6    9     4   dstBuffer  Ljava/nio/ByteBuffer;
            7    9     5       bytes  I
    MethodParameters:
      Name  Flags
      from  final

  public com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet put(java.nio.ByteBuffer, int);
    descriptor: (Ljava/nio/ByteBuffer;I)Lcom/mongodb/internal/connection/tlschannel/impl/ByteBufferSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=3
        start local 0 // com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet this
        start local 1 // java.nio.ByteBuffer from
        start local 2 // int length
         0: .line 83
            aload 1 /* from */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            iload 2 /* length */
            if_icmpge 2
         1: .line 84
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 86
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.remaining:()J
            iload 2 /* length */
            i2l
            lcmp
            ifge 4
         3: .line 87
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         4: .line 89
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* totalBytes */
        start local 3 // int totalBytes
         5: .line 90
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.offset:I
            istore 4 /* i */
        start local 4 // int i
         6: goto 15
         7: .line 91
      StackMap locals: int int
      StackMap stack:
            iload 2 /* length */
            iload 3 /* totalBytes */
            isub
            istore 5 /* pending */
        start local 5 // int pending
         8: .line 92
            iload 5 /* pending */
            ifne 10
         9: .line 93
            goto 16
        10: .line 95
      StackMap locals: int
      StackMap stack:
            iload 5 /* pending */
            aload 0 /* this */
            invokevirtual com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.remaining:()J
            l2i
            invokestatic java.lang.Math.min:(II)I
            istore 6 /* bytes */
        start local 6 // int bytes
        11: .line 96
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.array:[Ljava/nio/ByteBuffer;
            iload 4 /* i */
            aaload
            astore 7 /* dstBuffer */
        start local 7 // java.nio.ByteBuffer dstBuffer
        12: .line 97
            aload 1 /* from */
            aload 7 /* dstBuffer */
            iload 6 /* bytes */
            invokestatic com.mongodb.internal.connection.tlschannel.impl.ByteBufferUtil.copy:(Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;I)V
        13: .line 98
            iload 3 /* totalBytes */
            iload 6 /* bytes */
            iadd
            istore 3 /* totalBytes */
        end local 7 // java.nio.ByteBuffer dstBuffer
        end local 6 // int bytes
        end local 5 // int pending
        14: .line 90
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        15: iload 4 /* i */
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.offset:I
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.length:I
            iadd
            if_icmplt 7
        end local 4 // int i
        16: .line 100
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 3 // int totalBytes
        end local 2 // int length
        end local 1 // java.nio.ByteBuffer from
        end local 0 // com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   17     0        this  Lcom/mongodb/internal/connection/tlschannel/impl/ByteBufferSet;
            0   17     1        from  Ljava/nio/ByteBuffer;
            0   17     2      length  I
            5   17     3  totalBytes  I
            6   16     4           i  I
            8   14     5     pending  I
           11   14     6       bytes  I
           12   14     7   dstBuffer  Ljava/nio/ByteBuffer;
    MethodParameters:
        Name  Flags
      from    final
      length  final

  public int getRemaining(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet this
        start local 1 // java.nio.ByteBuffer dst
         0: .line 104
            iconst_0
            istore 2 /* totalBytes */
        start local 2 // int totalBytes
         1: .line 105
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.offset:I
            istore 3 /* i */
        start local 3 // int i
         2: goto 10
         3: .line 106
      StackMap locals: int int
      StackMap stack:
            aload 1 /* dst */
            invokevirtual java.nio.ByteBuffer.hasRemaining:()Z
            ifne 5
         4: .line 107
            goto 11
         5: .line 109
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.array:[Ljava/nio/ByteBuffer;
            iload 3 /* i */
            aaload
            astore 4 /* srcBuffer */
        start local 4 // java.nio.ByteBuffer srcBuffer
         6: .line 110
            aload 1 /* dst */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            aload 4 /* srcBuffer */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            invokestatic java.lang.Math.min:(II)I
            istore 5 /* bytes */
        start local 5 // int bytes
         7: .line 111
            aload 4 /* srcBuffer */
            aload 1 /* dst */
            iload 5 /* bytes */
            invokestatic com.mongodb.internal.connection.tlschannel.impl.ByteBufferUtil.copy:(Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;I)V
         8: .line 112
            iload 2 /* totalBytes */
            iload 5 /* bytes */
            iadd
            istore 2 /* totalBytes */
        end local 5 // int bytes
        end local 4 // java.nio.ByteBuffer srcBuffer
         9: .line 105
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* i */
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.offset:I
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.length:I
            iadd
            if_icmplt 3
        end local 3 // int i
        11: .line 114
      StackMap locals:
      StackMap stack:
            iload 2 /* totalBytes */
            ireturn
        end local 2 // int totalBytes
        end local 1 // java.nio.ByteBuffer dst
        end local 0 // com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   12     0        this  Lcom/mongodb/internal/connection/tlschannel/impl/ByteBufferSet;
            0   12     1         dst  Ljava/nio/ByteBuffer;
            1   12     2  totalBytes  I
            2   11     3           i  I
            6    9     4   srcBuffer  Ljava/nio/ByteBuffer;
            7    9     5       bytes  I
    MethodParameters:
      Name  Flags
      dst   final

  public com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet get(java.nio.ByteBuffer, int);
    descriptor: (Ljava/nio/ByteBuffer;I)Lcom/mongodb/internal/connection/tlschannel/impl/ByteBufferSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=3
        start local 0 // com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet this
        start local 1 // java.nio.ByteBuffer dst
        start local 2 // int length
         0: .line 118
            aload 0 /* this */
            invokevirtual com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.remaining:()J
            iload 2 /* length */
            i2l
            lcmp
            ifge 2
         1: .line 119
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 121
      StackMap locals:
      StackMap stack:
            aload 1 /* dst */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            iload 2 /* length */
            if_icmpge 4
         3: .line 122
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         4: .line 124
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* totalBytes */
        start local 3 // int totalBytes
         5: .line 125
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.offset:I
            istore 4 /* i */
        start local 4 // int i
         6: goto 15
         7: .line 126
      StackMap locals: int int
      StackMap stack:
            iload 2 /* length */
            iload 3 /* totalBytes */
            isub
            istore 5 /* pending */
        start local 5 // int pending
         8: .line 127
            iload 5 /* pending */
            ifne 10
         9: .line 128
            goto 16
        10: .line 130
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.array:[Ljava/nio/ByteBuffer;
            iload 4 /* i */
            aaload
            astore 6 /* srcBuffer */
        start local 6 // java.nio.ByteBuffer srcBuffer
        11: .line 131
            iload 5 /* pending */
            aload 6 /* srcBuffer */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            invokestatic java.lang.Math.min:(II)I
            istore 7 /* bytes */
        start local 7 // int bytes
        12: .line 132
            aload 6 /* srcBuffer */
            aload 1 /* dst */
            iload 7 /* bytes */
            invokestatic com.mongodb.internal.connection.tlschannel.impl.ByteBufferUtil.copy:(Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;I)V
        13: .line 133
            iload 3 /* totalBytes */
            iload 7 /* bytes */
            iadd
            istore 3 /* totalBytes */
        end local 7 // int bytes
        end local 6 // java.nio.ByteBuffer srcBuffer
        end local 5 // int pending
        14: .line 125
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        15: iload 4 /* i */
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.offset:I
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.length:I
            iadd
            if_icmplt 7
        end local 4 // int i
        16: .line 135
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 3 // int totalBytes
        end local 2 // int length
        end local 1 // java.nio.ByteBuffer dst
        end local 0 // com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   17     0        this  Lcom/mongodb/internal/connection/tlschannel/impl/ByteBufferSet;
            0   17     1         dst  Ljava/nio/ByteBuffer;
            0   17     2      length  I
            5   17     3  totalBytes  I
            6   16     4           i  I
            8   14     5     pending  I
           11   14     6   srcBuffer  Ljava/nio/ByteBuffer;
           12   14     7       bytes  I
    MethodParameters:
        Name  Flags
      dst     final
      length  final

  public boolean hasRemaining();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet this
         0: .line 139
            aload 0 /* this */
            invokevirtual com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.remaining:()J
            lconst_0
            lcmp
            ifle 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/mongodb/internal/connection/tlschannel/impl/ByteBufferSet;

  public boolean isReadOnly();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet this
         0: .line 143
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.offset:I
            istore 1 /* i */
        start local 1 // int i
         1: goto 5
         2: .line 144
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.array:[Ljava/nio/ByteBuffer;
            iload 1 /* i */
            aaload
            invokevirtual java.nio.ByteBuffer.isReadOnly:()Z
            ifeq 4
         3: .line 145
            iconst_1
            ireturn
         4: .line 143
      StackMap locals:
      StackMap stack:
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 1 /* i */
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.offset:I
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.length:I
            iadd
            if_icmplt 2
        end local 1 // int i
         6: .line 148
            iconst_0
            ireturn
        end local 0 // com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/mongodb/internal/connection/tlschannel/impl/ByteBufferSet;
            1    6     1     i  I

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet this
         0: .line 153
            new java.lang.StringBuilder
            dup
            ldc "ByteBufferSet[array="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.array:[Ljava/nio/ByteBuffer;
            invokestatic java.util.Arrays.toString:([Ljava/lang/Object;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ", offset="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.offset:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", length="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.length:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc "]"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/internal/connection/tlschannel/impl/ByteBufferSet;
}
SourceFile: "ByteBufferSet.java"