public class org.bson.LazyBSONList extends org.bson.LazyBSONObject implements java.util.List
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.bson.LazyBSONList
  super_class: org.bson.LazyBSONObject
{
  public void <init>(byte[], org.bson.LazyBSONCallback);
    descriptor: ([BLorg/bson/LazyBSONCallback;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.bson.LazyBSONList this
        start local 1 // byte[] bytes
        start local 2 // org.bson.LazyBSONCallback callback
         0: .line 40
            aload 0 /* this */
            aload 1 /* bytes */
            aload 2 /* callback */
            invokespecial org.bson.LazyBSONObject.<init>:([BLorg/bson/LazyBSONCallback;)V
         1: .line 41
            return
        end local 2 // org.bson.LazyBSONCallback callback
        end local 1 // byte[] bytes
        end local 0 // org.bson.LazyBSONList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/bson/LazyBSONList;
            0    2     1     bytes  [B
            0    2     2  callback  Lorg/bson/LazyBSONCallback;
    MethodParameters:
          Name  Flags
      bytes     final
      callback  final

  public void <init>(byte[], int, org.bson.LazyBSONCallback);
    descriptor: ([BILorg/bson/LazyBSONCallback;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.bson.LazyBSONList this
        start local 1 // byte[] bytes
        start local 2 // int offset
        start local 3 // org.bson.LazyBSONCallback callback
         0: .line 51
            aload 0 /* this */
            aload 1 /* bytes */
            iload 2 /* offset */
            aload 3 /* callback */
            invokespecial org.bson.LazyBSONObject.<init>:([BILorg/bson/LazyBSONCallback;)V
         1: .line 52
            return
        end local 3 // org.bson.LazyBSONCallback callback
        end local 2 // int offset
        end local 1 // byte[] bytes
        end local 0 // org.bson.LazyBSONList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/bson/LazyBSONList;
            0    2     1     bytes  [B
            0    2     2    offset  I
            0    2     3  callback  Lorg/bson/LazyBSONCallback;
    MethodParameters:
          Name  Flags
      bytes     final
      offset    final
      callback  final

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bson.LazyBSONList this
         0: .line 56
            aload 0 /* this */
            invokevirtual org.bson.LazyBSONList.keySet:()Ljava/util/Set;
            invokeinterface java.util.Set.size:()I
            ireturn
        end local 0 // org.bson.LazyBSONList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bson/LazyBSONList;

  public boolean contains(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.bson.LazyBSONList this
        start local 1 // java.lang.Object o
         0: .line 61
            aload 0 /* this */
            aload 1 /* o */
            invokevirtual org.bson.LazyBSONList.indexOf:(Ljava/lang/Object;)I
            iconst_m1
            if_icmple 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // org.bson.LazyBSONList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/bson/LazyBSONList;
            0    2     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     final

  public java.util.Iterator iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.bson.LazyBSONList this
         0: .line 66
            new org.bson.LazyBSONList$LazyBSONListIterator
            dup
            aload 0 /* this */
            invokespecial org.bson.LazyBSONList$LazyBSONListIterator.<init>:(Lorg/bson/LazyBSONList;)V
            areturn
        end local 0 // org.bson.LazyBSONList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bson/LazyBSONList;

  public boolean containsAll(java.util.Collection);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.bson.LazyBSONList this
        start local 1 // java.util.Collection collection
         0: .line 71
            new java.util.HashSet
            dup
            invokespecial java.util.HashSet.<init>:()V
            astore 2 /* values */
        start local 2 // java.util.Set values
         1: .line 72
            aload 0 /* this */
            invokevirtual org.bson.LazyBSONList.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: org.bson.LazyBSONList java.util.Collection java.util.Set top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 3 /* o */
        start local 3 // java.lang.Object o
         3: .line 73
            aload 2 /* values */
            aload 3 /* o */
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
        end local 3 // java.lang.Object o
         4: .line 72
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 75
            aload 2 /* values */
            aload 1 /* collection */
            invokeinterface java.util.Set.containsAll:(Ljava/util/Collection;)Z
            ireturn
        end local 2 // java.util.Set values
        end local 1 // java.util.Collection collection
        end local 0 // org.bson.LazyBSONList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    6     0        this  Lorg/bson/LazyBSONList;
            0    6     1  collection  Ljava/util/Collection;
            1    6     2      values  Ljava/util/Set<Ljava/lang/Object;>;
            3    4     3           o  Ljava/lang/Object;
    MethodParameters:
            Name  Flags
      collection  final

  public java.lang.Object get(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.bson.LazyBSONList this
        start local 1 // int index
         0: .line 80
            aload 0 /* this */
            iload 1 /* index */
            invokestatic java.lang.String.valueOf:(I)Ljava/lang/String;
            invokevirtual org.bson.LazyBSONList.get:(Ljava/lang/String;)Ljava/lang/Object;
            areturn
        end local 1 // int index
        end local 0 // org.bson.LazyBSONList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/bson/LazyBSONList;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  final

  public int indexOf(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.bson.LazyBSONList this
        start local 1 // java.lang.Object o
         0: .line 85
            aload 0 /* this */
            invokevirtual org.bson.LazyBSONList.iterator:()Ljava/util/Iterator;
            astore 2 /* it */
        start local 2 // java.util.Iterator it
         1: .line 86
            iconst_0
            istore 3 /* pos */
        start local 3 // int pos
         2: goto 6
         3: .line 87
      StackMap locals: java.util.Iterator int
      StackMap stack:
            aload 1 /* o */
            aload 2 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 5
         4: .line 88
            iload 3 /* pos */
            ireturn
         5: .line 86
      StackMap locals:
      StackMap stack:
            iinc 3 /* pos */ 1
      StackMap locals:
      StackMap stack:
         6: aload 2 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
        end local 3 // int pos
         7: .line 91
            iconst_m1
            ireturn
        end local 2 // java.util.Iterator it
        end local 1 // java.lang.Object o
        end local 0 // org.bson.LazyBSONList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/bson/LazyBSONList;
            0    8     1     o  Ljava/lang/Object;
            1    8     2    it  Ljava/util/Iterator;
            2    7     3   pos  I
    MethodParameters:
      Name  Flags
      o     final

  public int lastIndexOf(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.bson.LazyBSONList this
        start local 1 // java.lang.Object o
         0: .line 96
            iconst_m1
            istore 2 /* lastFound */
        start local 2 // int lastFound
         1: .line 97
            aload 0 /* this */
            invokevirtual org.bson.LazyBSONList.iterator:()Ljava/util/Iterator;
            astore 3 /* it */
        start local 3 // java.util.Iterator it
         2: .line 99
            iconst_0
            istore 4 /* pos */
        start local 4 // int pos
         3: goto 7
         4: .line 100
      StackMap locals: int java.util.Iterator int
      StackMap stack:
            aload 1 /* o */
            aload 3 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 6
         5: .line 101
            iload 4 /* pos */
            istore 2 /* lastFound */
         6: .line 99
      StackMap locals:
      StackMap stack:
            iinc 4 /* pos */ 1
      StackMap locals:
      StackMap stack:
         7: aload 3 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
        end local 4 // int pos
         8: .line 105
            iload 2 /* lastFound */
            ireturn
        end local 3 // java.util.Iterator it
        end local 2 // int lastFound
        end local 1 // java.lang.Object o
        end local 0 // org.bson.LazyBSONList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Lorg/bson/LazyBSONList;
            0    9     1          o  Ljava/lang/Object;
            1    9     2  lastFound  I
            2    9     3         it  Ljava/util/Iterator;
            3    8     4        pos  I
    MethodParameters:
      Name  Flags
      o     final

  public java.util.ListIterator listIterator();
    descriptor: ()Ljava/util/ListIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.bson.LazyBSONList this
         0: .line 153
            new java.lang.UnsupportedOperationException
            dup
            ldc "Operation is not supported instance of this type"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.bson.LazyBSONList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bson/LazyBSONList;

  public java.util.ListIterator listIterator(int);
    descriptor: (I)Ljava/util/ListIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.bson.LazyBSONList this
        start local 1 // int index
         0: .line 158
            new java.lang.UnsupportedOperationException
            dup
            ldc "Operation is not supported instance of this type"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // int index
        end local 0 // org.bson.LazyBSONList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/bson/LazyBSONList;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  final

  public boolean add(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.bson.LazyBSONList this
        start local 1 // java.lang.Object o
         0: .line 163
            new java.lang.UnsupportedOperationException
            dup
            ldc "Object is read only"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.lang.Object o
        end local 0 // org.bson.LazyBSONList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bson/LazyBSONList;
            0    1     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     final

  public boolean remove(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.bson.LazyBSONList this
        start local 1 // java.lang.Object o
         0: .line 168
            new java.lang.UnsupportedOperationException
            dup
            ldc "Object is read only"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.lang.Object o
        end local 0 // org.bson.LazyBSONList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bson/LazyBSONList;
            0    1     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     final

  public boolean addAll(java.util.Collection);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.bson.LazyBSONList this
        start local 1 // java.util.Collection c
         0: .line 173
            new java.lang.UnsupportedOperationException
            dup
            ldc "Object is read only"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.util.Collection c
        end local 0 // org.bson.LazyBSONList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bson/LazyBSONList;
            0    1     1     c  Ljava/util/Collection;
    MethodParameters:
      Name  Flags
      c     final

  public boolean addAll(int, java.util.Collection);
    descriptor: (ILjava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.bson.LazyBSONList this
        start local 1 // int index
        start local 2 // java.util.Collection c
         0: .line 178
            new java.lang.UnsupportedOperationException
            dup
            ldc "Object is read only"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // java.util.Collection c
        end local 1 // int index
        end local 0 // org.bson.LazyBSONList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/bson/LazyBSONList;
            0    1     1  index  I
            0    1     2      c  Ljava/util/Collection;
    MethodParameters:
       Name  Flags
      index  final
      c      final

  public boolean removeAll(java.util.Collection);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.bson.LazyBSONList this
        start local 1 // java.util.Collection c
         0: .line 183
            new java.lang.UnsupportedOperationException
            dup
            ldc "Object is read only"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.util.Collection c
        end local 0 // org.bson.LazyBSONList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bson/LazyBSONList;
            0    1     1     c  Ljava/util/Collection;
    MethodParameters:
      Name  Flags
      c     final

  public boolean retainAll(java.util.Collection);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.bson.LazyBSONList this
        start local 1 // java.util.Collection c
         0: .line 188
            new java.lang.UnsupportedOperationException
            dup
            ldc "Object is read only"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.util.Collection c
        end local 0 // org.bson.LazyBSONList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bson/LazyBSONList;
            0    1     1     c  Ljava/util/Collection;
    MethodParameters:
      Name  Flags
      c     final

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.bson.LazyBSONList this
         0: .line 193
            new java.lang.UnsupportedOperationException
            dup
            ldc "Object is read only"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.bson.LazyBSONList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bson/LazyBSONList;

  public java.lang.Object set(int, java.lang.Object);
    descriptor: (ILjava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.bson.LazyBSONList this
        start local 1 // int index
        start local 2 // java.lang.Object element
         0: .line 198
            new java.lang.UnsupportedOperationException
            dup
            ldc "Object is read only"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // java.lang.Object element
        end local 1 // int index
        end local 0 // org.bson.LazyBSONList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/bson/LazyBSONList;
            0    1     1    index  I
            0    1     2  element  Ljava/lang/Object;
    MethodParameters:
         Name  Flags
      index    final
      element  final

  public void add(int, java.lang.Object);
    descriptor: (ILjava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.bson.LazyBSONList this
        start local 1 // int index
        start local 2 // java.lang.Object element
         0: .line 203
            new java.lang.UnsupportedOperationException
            dup
            ldc "Object is read only"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // java.lang.Object element
        end local 1 // int index
        end local 0 // org.bson.LazyBSONList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/bson/LazyBSONList;
            0    1     1    index  I
            0    1     2  element  Ljava/lang/Object;
    MethodParameters:
         Name  Flags
      index    final
      element  final

  public java.lang.Object remove(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.bson.LazyBSONList this
        start local 1 // int index
         0: .line 208
            new java.lang.UnsupportedOperationException
            dup
            ldc "Object is read only"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // int index
        end local 0 // org.bson.LazyBSONList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/bson/LazyBSONList;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  final

  public java.util.List subList(int, int);
    descriptor: (II)Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.bson.LazyBSONList this
        start local 1 // int fromIndex
        start local 2 // int toIndex
         0: .line 213
            new java.lang.UnsupportedOperationException
            dup
            ldc "Operation is not supported"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // int toIndex
        end local 1 // int fromIndex
        end local 0 // org.bson.LazyBSONList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/bson/LazyBSONList;
            0    1     1  fromIndex  I
            0    1     2    toIndex  I
    MethodParameters:
           Name  Flags
      fromIndex  final
      toIndex    final

  public java.lang.Object[] toArray();
    descriptor: ()[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.bson.LazyBSONList this
         0: .line 218
            new java.lang.UnsupportedOperationException
            dup
            ldc "Operation is not supported"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.bson.LazyBSONList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bson/LazyBSONList;

  public java.lang.Object[] toArray(java.lang.Object[]);
    descriptor: ([Ljava/lang/Object;)[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.bson.LazyBSONList this
        start local 1 // java.lang.Object[] a
         0: .line 223
            new java.lang.UnsupportedOperationException
            dup
            ldc "Operation is not supported"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.lang.Object[] a
        end local 0 // org.bson.LazyBSONList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bson/LazyBSONList;
            0    1     1     a  [Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      a     final
}
SourceFile: "LazyBSONList.java"
NestMembers:
  org.bson.LazyBSONList$LazyBSONListIterator
InnerClasses:
  public LazyBSONListIterator = org.bson.LazyBSONList$LazyBSONListIterator of org.bson.LazyBSONList