public class com.mongodb.LazyDBObject extends org.bson.LazyBSONObject implements com.mongodb.DBObject
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.mongodb.LazyDBObject
  super_class: org.bson.LazyBSONObject
{
  private boolean isPartial;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  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 // com.mongodb.LazyDBObject this
        start local 1 // byte[] bytes
        start local 2 // org.bson.LazyBSONCallback callback
         0: .line 39
            aload 0 /* this */
            aload 1 /* bytes */
            aload 2 /* callback */
            invokespecial org.bson.LazyBSONObject.<init>:([BLorg/bson/LazyBSONCallback;)V
         1: .line 30
            aload 0 /* this */
            iconst_0
            putfield com.mongodb.LazyDBObject.isPartial:Z
         2: .line 40
            return
        end local 2 // org.bson.LazyBSONCallback callback
        end local 1 // byte[] bytes
        end local 0 // com.mongodb.LazyDBObject this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lcom/mongodb/LazyDBObject;
            0    3     1     bytes  [B
            0    3     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 // com.mongodb.LazyDBObject this
        start local 1 // byte[] bytes
        start local 2 // int offset
        start local 3 // org.bson.LazyBSONCallback callback
         0: .line 50
            aload 0 /* this */
            aload 1 /* bytes */
            iload 2 /* offset */
            aload 3 /* callback */
            invokespecial org.bson.LazyBSONObject.<init>:([BILorg/bson/LazyBSONCallback;)V
         1: .line 30
            aload 0 /* this */
            iconst_0
            putfield com.mongodb.LazyDBObject.isPartial:Z
         2: .line 51
            return
        end local 3 // org.bson.LazyBSONCallback callback
        end local 2 // int offset
        end local 1 // byte[] bytes
        end local 0 // com.mongodb.LazyDBObject this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lcom/mongodb/LazyDBObject;
            0    3     1     bytes  [B
            0    3     2    offset  I
            0    3     3  callback  Lorg/bson/LazyBSONCallback;
    MethodParameters:
          Name  Flags
      bytes     final
      offset    final
      callback  final

  public void markAsPartialObject();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.mongodb.LazyDBObject this
         0: .line 55
            aload 0 /* this */
            iconst_1
            putfield com.mongodb.LazyDBObject.isPartial:Z
         1: .line 56
            return
        end local 0 // com.mongodb.LazyDBObject this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/mongodb/LazyDBObject;

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

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.LazyDBObject this
         0: .line 70
            aload 0 /* this */
            invokestatic com.mongodb.util.JSON.serialize:(Ljava/lang/Object;)Ljava/lang/String;
            areturn
        end local 0 // com.mongodb.LazyDBObject this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/LazyDBObject;
}
SourceFile: "LazyDBObject.java"
    RuntimeVisibleAnnotations: 
      com.mongodb.annotations.Immutable()