public class io.vertx.ext.mongo.UpdateOptions
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.ext.mongo.UpdateOptions
  super_class: java.lang.Object
{
  public static final boolean DEFAULT_UPSERT;
    descriptor: Z
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  public static final boolean DEFAULT_MULTI;
    descriptor: Z
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  public static final boolean DEFAULT_RETURN_NEW_DOCUMENT;
    descriptor: Z
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  private io.vertx.ext.mongo.WriteOption writeOption;
    descriptor: Lio/vertx/ext/mongo/WriteOption;
    flags: (0x0002) ACC_PRIVATE

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

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

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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.mongo.UpdateOptions this
         0: .line 37
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 38
            aload 0 /* this */
            iconst_0
            putfield io.vertx.ext.mongo.UpdateOptions.upsert:Z
         2: .line 39
            aload 0 /* this */
            iconst_0
            putfield io.vertx.ext.mongo.UpdateOptions.multi:Z
         3: .line 40
            aload 0 /* this */
            iconst_0
            putfield io.vertx.ext.mongo.UpdateOptions.returnNewDocument:Z
         4: .line 41
            return
        end local 0 // io.vertx.ext.mongo.UpdateOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/ext/mongo/UpdateOptions;

  public void <init>(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.mongo.UpdateOptions this
        start local 1 // boolean upsert
         0: .line 47
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 48
            aload 0 /* this */
            iload 1 /* upsert */
            putfield io.vertx.ext.mongo.UpdateOptions.upsert:Z
         2: .line 49
            aload 0 /* this */
            iconst_0
            putfield io.vertx.ext.mongo.UpdateOptions.multi:Z
         3: .line 50
            aload 0 /* this */
            iconst_0
            putfield io.vertx.ext.mongo.UpdateOptions.returnNewDocument:Z
         4: .line 51
            return
        end local 1 // boolean upsert
        end local 0 // io.vertx.ext.mongo.UpdateOptions this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lio/vertx/ext/mongo/UpdateOptions;
            0    5     1  upsert  Z
    MethodParameters:
        Name  Flags
      upsert  

  public void <init>(boolean, boolean);
    descriptor: (ZZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.ext.mongo.UpdateOptions this
        start local 1 // boolean upsert
        start local 2 // boolean multi
         0: .line 58
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 59
            aload 0 /* this */
            iload 1 /* upsert */
            putfield io.vertx.ext.mongo.UpdateOptions.upsert:Z
         2: .line 60
            aload 0 /* this */
            iload 2 /* multi */
            putfield io.vertx.ext.mongo.UpdateOptions.multi:Z
         3: .line 61
            return
        end local 2 // boolean multi
        end local 1 // boolean upsert
        end local 0 // io.vertx.ext.mongo.UpdateOptions this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lio/vertx/ext/mongo/UpdateOptions;
            0    4     1  upsert  Z
            0    4     2   multi  Z
    MethodParameters:
        Name  Flags
      upsert  
      multi   

  public void <init>(io.vertx.ext.mongo.UpdateOptions);
    descriptor: (Lio/vertx/ext/mongo/UpdateOptions;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.mongo.UpdateOptions this
        start local 1 // io.vertx.ext.mongo.UpdateOptions other
         0: .line 67
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 68
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.mongo.UpdateOptions.writeOption:Lio/vertx/ext/mongo/WriteOption;
            putfield io.vertx.ext.mongo.UpdateOptions.writeOption:Lio/vertx/ext/mongo/WriteOption;
         2: .line 69
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.mongo.UpdateOptions.upsert:Z
            putfield io.vertx.ext.mongo.UpdateOptions.upsert:Z
         3: .line 70
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.mongo.UpdateOptions.multi:Z
            putfield io.vertx.ext.mongo.UpdateOptions.multi:Z
         4: .line 71
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.mongo.UpdateOptions.returnNewDocument:Z
            putfield io.vertx.ext.mongo.UpdateOptions.returnNewDocument:Z
         5: .line 72
            return
        end local 1 // io.vertx.ext.mongo.UpdateOptions other
        end local 0 // io.vertx.ext.mongo.UpdateOptions this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lio/vertx/ext/mongo/UpdateOptions;
            0    6     1  other  Lio/vertx/ext/mongo/UpdateOptions;
    MethodParameters:
       Name  Flags
      other  

  public void <init>(io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/core/json/JsonObject;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.vertx.ext.mongo.UpdateOptions this
        start local 1 // io.vertx.core.json.JsonObject json
         0: .line 79
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 80
            aload 1 /* json */
            ldc "writeOption"
            invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;)Ljava/lang/String;
            astore 2 /* wo */
        start local 2 // java.lang.String wo
         2: .line 81
            aload 2 /* wo */
            ifnull 4
         3: .line 82
            aload 0 /* this */
            aload 2 /* wo */
            invokevirtual java.lang.String.toUpperCase:()Ljava/lang/String;
            invokestatic io.vertx.ext.mongo.WriteOption.valueOf:(Ljava/lang/String;)Lio/vertx/ext/mongo/WriteOption;
            putfield io.vertx.ext.mongo.UpdateOptions.writeOption:Lio/vertx/ext/mongo/WriteOption;
         4: .line 84
      StackMap locals: io.vertx.ext.mongo.UpdateOptions io.vertx.core.json.JsonObject java.lang.String
      StackMap stack:
            aload 0 /* this */
            aload 1 /* json */
            ldc "upsert"
            iconst_0
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual io.vertx.core.json.JsonObject.getBoolean:(Ljava/lang/String;Ljava/lang/Boolean;)Ljava/lang/Boolean;
            invokevirtual java.lang.Boolean.booleanValue:()Z
            putfield io.vertx.ext.mongo.UpdateOptions.upsert:Z
         5: .line 85
            aload 0 /* this */
            aload 1 /* json */
            ldc "multi"
            iconst_0
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual io.vertx.core.json.JsonObject.getBoolean:(Ljava/lang/String;Ljava/lang/Boolean;)Ljava/lang/Boolean;
            invokevirtual java.lang.Boolean.booleanValue:()Z
            putfield io.vertx.ext.mongo.UpdateOptions.multi:Z
         6: .line 86
            aload 0 /* this */
            aload 1 /* json */
            ldc "return_new_document"
            iconst_0
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual io.vertx.core.json.JsonObject.getBoolean:(Ljava/lang/String;Ljava/lang/Boolean;)Ljava/lang/Boolean;
            invokevirtual java.lang.Boolean.booleanValue:()Z
            putfield io.vertx.ext.mongo.UpdateOptions.returnNewDocument:Z
         7: .line 87
            return
        end local 2 // java.lang.String wo
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.ext.mongo.UpdateOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lio/vertx/ext/mongo/UpdateOptions;
            0    8     1  json  Lio/vertx/core/json/JsonObject;
            2    8     2    wo  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      json  

  public io.vertx.ext.mongo.WriteOption getWriteOption();
    descriptor: ()Lio/vertx/ext/mongo/WriteOption;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.mongo.UpdateOptions this
         0: .line 95
            aload 0 /* this */
            getfield io.vertx.ext.mongo.UpdateOptions.writeOption:Lio/vertx/ext/mongo/WriteOption;
            areturn
        end local 0 // io.vertx.ext.mongo.UpdateOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/mongo/UpdateOptions;

  public io.vertx.ext.mongo.UpdateOptions setWriteOption(io.vertx.ext.mongo.WriteOption);
    descriptor: (Lio/vertx/ext/mongo/WriteOption;)Lio/vertx/ext/mongo/UpdateOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.mongo.UpdateOptions this
        start local 1 // io.vertx.ext.mongo.WriteOption writeOption
         0: .line 104
            aload 0 /* this */
            aload 1 /* writeOption */
            putfield io.vertx.ext.mongo.UpdateOptions.writeOption:Lio/vertx/ext/mongo/WriteOption;
         1: .line 105
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.ext.mongo.WriteOption writeOption
        end local 0 // io.vertx.ext.mongo.UpdateOptions this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lio/vertx/ext/mongo/UpdateOptions;
            0    2     1  writeOption  Lio/vertx/ext/mongo/WriteOption;
    MethodParameters:
             Name  Flags
      writeOption  

  public boolean isUpsert();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.mongo.UpdateOptions this
         0: .line 114
            aload 0 /* this */
            getfield io.vertx.ext.mongo.UpdateOptions.upsert:Z
            ireturn
        end local 0 // io.vertx.ext.mongo.UpdateOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/mongo/UpdateOptions;

  public io.vertx.ext.mongo.UpdateOptions setUpsert(boolean);
    descriptor: (Z)Lio/vertx/ext/mongo/UpdateOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.mongo.UpdateOptions this
        start local 1 // boolean upsert
         0: .line 124
            aload 0 /* this */
            iload 1 /* upsert */
            putfield io.vertx.ext.mongo.UpdateOptions.upsert:Z
         1: .line 125
            aload 0 /* this */
            areturn
        end local 1 // boolean upsert
        end local 0 // io.vertx.ext.mongo.UpdateOptions this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/vertx/ext/mongo/UpdateOptions;
            0    2     1  upsert  Z
    MethodParameters:
        Name  Flags
      upsert  

  public boolean isReturningNewDocument();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.mongo.UpdateOptions this
         0: .line 134
            aload 0 /* this */
            getfield io.vertx.ext.mongo.UpdateOptions.returnNewDocument:Z
            ireturn
        end local 0 // io.vertx.ext.mongo.UpdateOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/mongo/UpdateOptions;

  public io.vertx.ext.mongo.UpdateOptions setReturningNewDocument(boolean);
    descriptor: (Z)Lio/vertx/ext/mongo/UpdateOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.mongo.UpdateOptions this
        start local 1 // boolean returnNewDocument
         0: .line 145
            aload 0 /* this */
            iload 1 /* returnNewDocument */
            putfield io.vertx.ext.mongo.UpdateOptions.returnNewDocument:Z
         1: .line 146
            aload 0 /* this */
            areturn
        end local 1 // boolean returnNewDocument
        end local 0 // io.vertx.ext.mongo.UpdateOptions this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    2     0               this  Lio/vertx/ext/mongo/UpdateOptions;
            0    2     1  returnNewDocument  Z
    MethodParameters:
                   Name  Flags
      returnNewDocument  

  public boolean isMulti();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.mongo.UpdateOptions this
         0: .line 155
            aload 0 /* this */
            getfield io.vertx.ext.mongo.UpdateOptions.multi:Z
            ireturn
        end local 0 // io.vertx.ext.mongo.UpdateOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/mongo/UpdateOptions;

  public io.vertx.ext.mongo.UpdateOptions setMulti(boolean);
    descriptor: (Z)Lio/vertx/ext/mongo/UpdateOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.mongo.UpdateOptions this
        start local 1 // boolean multi
         0: .line 165
            aload 0 /* this */
            iload 1 /* multi */
            putfield io.vertx.ext.mongo.UpdateOptions.multi:Z
         1: .line 166
            aload 0 /* this */
            areturn
        end local 1 // boolean multi
        end local 0 // io.vertx.ext.mongo.UpdateOptions this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/ext/mongo/UpdateOptions;
            0    2     1  multi  Z
    MethodParameters:
       Name  Flags
      multi  

  public io.vertx.core.json.JsonObject toJson();
    descriptor: ()Lio/vertx/core/json/JsonObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // io.vertx.ext.mongo.UpdateOptions this
         0: .line 170
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            astore 1 /* json */
        start local 1 // io.vertx.core.json.JsonObject json
         1: .line 171
            aload 0 /* this */
            getfield io.vertx.ext.mongo.UpdateOptions.writeOption:Lio/vertx/ext/mongo/WriteOption;
            ifnull 3
         2: .line 172
            aload 1 /* json */
            ldc "writeOption"
            aload 0 /* this */
            getfield io.vertx.ext.mongo.UpdateOptions.writeOption:Lio/vertx/ext/mongo/WriteOption;
            invokevirtual io.vertx.ext.mongo.WriteOption.name:()Ljava/lang/String;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            pop
         3: .line 174
      StackMap locals: io.vertx.core.json.JsonObject
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.mongo.UpdateOptions.upsert:Z
            ifeq 5
         4: .line 175
            aload 1 /* json */
            ldc "upsert"
            iconst_1
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Boolean;)Lio/vertx/core/json/JsonObject;
            pop
         5: .line 177
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.mongo.UpdateOptions.multi:Z
            ifeq 7
         6: .line 178
            aload 1 /* json */
            ldc "multi"
            iconst_1
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Boolean;)Lio/vertx/core/json/JsonObject;
            pop
         7: .line 180
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.mongo.UpdateOptions.returnNewDocument:Z
            ifeq 9
         8: .line 181
            aload 1 /* json */
            ldc "return_new_document"
            iconst_1
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Boolean;)Lio/vertx/core/json/JsonObject;
            pop
         9: .line 184
      StackMap locals:
      StackMap stack:
            aload 1 /* json */
            areturn
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.ext.mongo.UpdateOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lio/vertx/ext/mongo/UpdateOptions;
            1   10     1  json  Lio/vertx/core/json/JsonObject;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.ext.mongo.UpdateOptions this
        start local 1 // java.lang.Object o
         0: .line 189
            aload 0 /* this */
            aload 1 /* o */
            if_acmpne 1
            iconst_1
            ireturn
         1: .line 190
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            ifnull 2
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* o */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            if_acmpeq 3
      StackMap locals:
      StackMap stack:
         2: iconst_0
            ireturn
         3: .line 192
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast io.vertx.ext.mongo.UpdateOptions
            astore 2 /* options */
        start local 2 // io.vertx.ext.mongo.UpdateOptions options
         4: .line 194
            aload 0 /* this */
            getfield io.vertx.ext.mongo.UpdateOptions.multi:Z
            aload 2 /* options */
            getfield io.vertx.ext.mongo.UpdateOptions.multi:Z
            if_icmpeq 5
            iconst_0
            ireturn
         5: .line 195
      StackMap locals: io.vertx.ext.mongo.UpdateOptions
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.mongo.UpdateOptions.upsert:Z
            aload 2 /* options */
            getfield io.vertx.ext.mongo.UpdateOptions.upsert:Z
            if_icmpeq 6
            iconst_0
            ireturn
         6: .line 196
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.mongo.UpdateOptions.writeOption:Lio/vertx/ext/mongo/WriteOption;
            aload 2 /* options */
            getfield io.vertx.ext.mongo.UpdateOptions.writeOption:Lio/vertx/ext/mongo/WriteOption;
            if_acmpeq 7
            iconst_0
            ireturn
         7: .line 197
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.mongo.UpdateOptions.returnNewDocument:Z
            aload 2 /* options */
            getfield io.vertx.ext.mongo.UpdateOptions.returnNewDocument:Z
            if_icmpeq 8
            iconst_0
            ireturn
         8: .line 199
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // io.vertx.ext.mongo.UpdateOptions options
        end local 1 // java.lang.Object o
        end local 0 // io.vertx.ext.mongo.UpdateOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lio/vertx/ext/mongo/UpdateOptions;
            0    9     1        o  Ljava/lang/Object;
            4    9     2  options  Lio/vertx/ext/mongo/UpdateOptions;
    MethodParameters:
      Name  Flags
      o     

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.ext.mongo.UpdateOptions this
         0: .line 204
            aload 0 /* this */
            getfield io.vertx.ext.mongo.UpdateOptions.writeOption:Lio/vertx/ext/mongo/WriteOption;
            ifnull 1
            aload 0 /* this */
            getfield io.vertx.ext.mongo.UpdateOptions.writeOption:Lio/vertx/ext/mongo/WriteOption;
            invokevirtual io.vertx.ext.mongo.WriteOption.hashCode:()I
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: istore 1 /* result */
        start local 1 // int result
         3: .line 205
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.vertx.ext.mongo.UpdateOptions.upsert:Z
            ifeq 4
            iconst_1
            goto 5
      StackMap locals: io.vertx.ext.mongo.UpdateOptions int
      StackMap stack: int
         4: iconst_0
      StackMap locals: io.vertx.ext.mongo.UpdateOptions int
      StackMap stack: int int
         5: iadd
            istore 1 /* result */
         6: .line 206
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.vertx.ext.mongo.UpdateOptions.multi:Z
            ifeq 7
            iconst_1
            goto 8
      StackMap locals:
      StackMap stack: int
         7: iconst_0
      StackMap locals: io.vertx.ext.mongo.UpdateOptions int
      StackMap stack: int int
         8: iadd
            istore 1 /* result */
         9: .line 207
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.vertx.ext.mongo.UpdateOptions.returnNewDocument:Z
            ifeq 10
            iconst_1
            goto 11
      StackMap locals:
      StackMap stack: int
        10: iconst_0
      StackMap locals: io.vertx.ext.mongo.UpdateOptions int
      StackMap stack: int int
        11: iadd
            istore 1 /* result */
        12: .line 208
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // io.vertx.ext.mongo.UpdateOptions this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Lio/vertx/ext/mongo/UpdateOptions;
            3   13     1  result  I
}
SourceFile: "UpdateOptions.java"
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.DataObject()