public abstract class com.mongodb.client.result.UpdateResult
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: com.mongodb.client.result.UpdateResult
  super_class: java.lang.Object
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.client.result.UpdateResult this
         0: .line 29
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.mongodb.client.result.UpdateResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/client/result/UpdateResult;

  public abstract boolean wasAcknowledged();
    descriptor: ()Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract long getMatchedCount();
    descriptor: ()J
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract boolean isModifiedCountAvailable();
    descriptor: ()Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()

  public abstract long getModifiedCount();
    descriptor: ()J
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract org.bson.BsonValue getUpsertedId();
    descriptor: ()Lorg/bson/BsonValue;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      com.mongodb.lang.Nullable()

  public static com.mongodb.client.result.UpdateResult acknowledged(long, java.lang.Long, org.bson.BsonValue);
    descriptor: (JLjava/lang/Long;Lorg/bson/BsonValue;)Lcom/mongodb/client/result/UpdateResult;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // long matchedCount
        start local 2 // java.lang.Long modifiedCount
        start local 3 // org.bson.BsonValue upsertedId
         0: .line 81
            new com.mongodb.client.result.UpdateResult$AcknowledgedUpdateResult
            dup
            lload 0 /* matchedCount */
            aload 2 /* modifiedCount */
            aload 3 /* upsertedId */
            invokespecial com.mongodb.client.result.UpdateResult$AcknowledgedUpdateResult.<init>:(JLjava/lang/Long;Lorg/bson/BsonValue;)V
            areturn
        end local 3 // org.bson.BsonValue upsertedId
        end local 2 // java.lang.Long modifiedCount
        end local 0 // long matchedCount
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0   matchedCount  J
            0    1     2  modifiedCount  Ljava/lang/Long;
            0    1     3     upsertedId  Lorg/bson/BsonValue;
    RuntimeVisibleParameterAnnotations: 
      0:
      1:
        com.mongodb.lang.Nullable()
      2:
        com.mongodb.lang.Nullable()
    MethodParameters:
               Name  Flags
      matchedCount   final
      modifiedCount  final
      upsertedId     final

  public static com.mongodb.client.result.UpdateResult unacknowledged();
    descriptor: ()Lcom/mongodb/client/result/UpdateResult;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 90
            new com.mongodb.client.result.UpdateResult$UnacknowledgedUpdateResult
            dup
            invokespecial com.mongodb.client.result.UpdateResult$UnacknowledgedUpdateResult.<init>:()V
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "UpdateResult.java"
NestMembers:
  com.mongodb.client.result.UpdateResult$AcknowledgedUpdateResult  com.mongodb.client.result.UpdateResult$UnacknowledgedUpdateResult
InnerClasses:
  private AcknowledgedUpdateResult = com.mongodb.client.result.UpdateResult$AcknowledgedUpdateResult of com.mongodb.client.result.UpdateResult
  private UnacknowledgedUpdateResult = com.mongodb.client.result.UpdateResult$UnacknowledgedUpdateResult of com.mongodb.client.result.UpdateResult