public class io.vertx.proton.streams.ProtonPublisherOptions
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.proton.streams.ProtonPublisherOptions
  super_class: java.lang.Object
{
  private java.lang.String linkName;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

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

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

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

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

  private int maxOutstandingCredit;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.proton.streams.ProtonPublisherOptions this
         0: .line 31
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 32
            return
        end local 0 // io.vertx.proton.streams.ProtonPublisherOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/proton/streams/ProtonPublisherOptions;

  public io.vertx.proton.streams.ProtonPublisherOptions setLinkName(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/proton/streams/ProtonPublisherOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.proton.streams.ProtonPublisherOptions this
        start local 1 // java.lang.String linkName
         0: .line 41
            aload 0 /* this */
            aload 1 /* linkName */
            putfield io.vertx.proton.streams.ProtonPublisherOptions.linkName:Ljava/lang/String;
         1: .line 42
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String linkName
        end local 0 // io.vertx.proton.streams.ProtonPublisherOptions this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/vertx/proton/streams/ProtonPublisherOptions;
            0    2     1  linkName  Ljava/lang/String;
    MethodParameters:
          Name  Flags
      linkName  

  public java.lang.String getLinkName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.proton.streams.ProtonPublisherOptions this
         0: .line 46
            aload 0 /* this */
            getfield io.vertx.proton.streams.ProtonPublisherOptions.linkName:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.proton.streams.ProtonPublisherOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/proton/streams/ProtonPublisherOptions;

  public io.vertx.proton.streams.ProtonPublisherOptions setDurable(boolean);
    descriptor: (Z)Lio/vertx/proton/streams/ProtonPublisherOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.proton.streams.ProtonPublisherOptions this
        start local 1 // boolean durable
         0: .line 60
            aload 0 /* this */
            iload 1 /* durable */
            putfield io.vertx.proton.streams.ProtonPublisherOptions.durable:Z
         1: .line 61
            aload 0 /* this */
            areturn
        end local 1 // boolean durable
        end local 0 // io.vertx.proton.streams.ProtonPublisherOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/proton/streams/ProtonPublisherOptions;
            0    2     1  durable  Z
    MethodParameters:
         Name  Flags
      durable  

  public boolean isDurable();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.proton.streams.ProtonPublisherOptions this
         0: .line 65
            aload 0 /* this */
            getfield io.vertx.proton.streams.ProtonPublisherOptions.durable:Z
            ireturn
        end local 0 // io.vertx.proton.streams.ProtonPublisherOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/proton/streams/ProtonPublisherOptions;

  public io.vertx.proton.streams.ProtonPublisherOptions setShared(boolean);
    descriptor: (Z)Lio/vertx/proton/streams/ProtonPublisherOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.proton.streams.ProtonPublisherOptions this
        start local 1 // boolean shared
         0: .line 76
            aload 0 /* this */
            iload 1 /* shared */
            putfield io.vertx.proton.streams.ProtonPublisherOptions.shared:Z
         1: .line 77
            aload 0 /* this */
            areturn
        end local 1 // boolean shared
        end local 0 // io.vertx.proton.streams.ProtonPublisherOptions this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/vertx/proton/streams/ProtonPublisherOptions;
            0    2     1  shared  Z
    MethodParameters:
        Name  Flags
      shared  

  public boolean isShared();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.proton.streams.ProtonPublisherOptions this
         0: .line 81
            aload 0 /* this */
            getfield io.vertx.proton.streams.ProtonPublisherOptions.shared:Z
            ireturn
        end local 0 // io.vertx.proton.streams.ProtonPublisherOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/proton/streams/ProtonPublisherOptions;

  public io.vertx.proton.streams.ProtonPublisherOptions setGlobal(boolean);
    descriptor: (Z)Lio/vertx/proton/streams/ProtonPublisherOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.proton.streams.ProtonPublisherOptions this
        start local 1 // boolean global
         0: .line 94
            aload 0 /* this */
            iload 1 /* global */
            putfield io.vertx.proton.streams.ProtonPublisherOptions.global:Z
         1: .line 95
            aload 0 /* this */
            areturn
        end local 1 // boolean global
        end local 0 // io.vertx.proton.streams.ProtonPublisherOptions this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/vertx/proton/streams/ProtonPublisherOptions;
            0    2     1  global  Z
    MethodParameters:
        Name  Flags
      global  

  public boolean isGlobal();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.proton.streams.ProtonPublisherOptions this
         0: .line 99
            aload 0 /* this */
            getfield io.vertx.proton.streams.ProtonPublisherOptions.global:Z
            ireturn
        end local 0 // io.vertx.proton.streams.ProtonPublisherOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/proton/streams/ProtonPublisherOptions;

  public io.vertx.proton.streams.ProtonPublisherOptions setDynamic(boolean);
    descriptor: (Z)Lio/vertx/proton/streams/ProtonPublisherOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.proton.streams.ProtonPublisherOptions this
        start local 1 // boolean dynamic
         0: .line 113
            aload 0 /* this */
            iload 1 /* dynamic */
            putfield io.vertx.proton.streams.ProtonPublisherOptions.dynamic:Z
         1: .line 114
            aload 0 /* this */
            areturn
        end local 1 // boolean dynamic
        end local 0 // io.vertx.proton.streams.ProtonPublisherOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/proton/streams/ProtonPublisherOptions;
            0    2     1  dynamic  Z
    MethodParameters:
         Name  Flags
      dynamic  

  public boolean isDynamic();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.proton.streams.ProtonPublisherOptions this
         0: .line 118
            aload 0 /* this */
            getfield io.vertx.proton.streams.ProtonPublisherOptions.dynamic:Z
            ireturn
        end local 0 // io.vertx.proton.streams.ProtonPublisherOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/proton/streams/ProtonPublisherOptions;

  public io.vertx.proton.streams.ProtonPublisherOptions setMaxOutstandingCredit(int);
    descriptor: (I)Lio/vertx/proton/streams/ProtonPublisherOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.proton.streams.ProtonPublisherOptions this
        start local 1 // int maxOutstandingCredit
         0: .line 133
            aload 0 /* this */
            iload 1 /* maxOutstandingCredit */
            putfield io.vertx.proton.streams.ProtonPublisherOptions.maxOutstandingCredit:I
         1: .line 135
            aload 0 /* this */
            areturn
        end local 1 // int maxOutstandingCredit
        end local 0 // io.vertx.proton.streams.ProtonPublisherOptions this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    2     0                  this  Lio/vertx/proton/streams/ProtonPublisherOptions;
            0    2     1  maxOutstandingCredit  I
    MethodParameters:
                      Name  Flags
      maxOutstandingCredit  

  public int getMaxOutstandingCredit();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.proton.streams.ProtonPublisherOptions this
         0: .line 139
            aload 0 /* this */
            getfield io.vertx.proton.streams.ProtonPublisherOptions.maxOutstandingCredit:I
            ireturn
        end local 0 // io.vertx.proton.streams.ProtonPublisherOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/proton/streams/ProtonPublisherOptions;

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.proton.streams.ProtonPublisherOptions this
         0: .line 146
            iconst_1
            istore 1 /* result */
        start local 1 // int result
         1: .line 147
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.vertx.proton.streams.ProtonPublisherOptions.linkName:Ljava/lang/String;
            invokestatic java.util.Objects.hashCode:(Ljava/lang/Object;)I
            iadd
            istore 1 /* result */
         2: .line 148
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.vertx.proton.streams.ProtonPublisherOptions.durable:Z
            ifeq 3
            sipush 1231
            goto 4
      StackMap locals: io.vertx.proton.streams.ProtonPublisherOptions int
      StackMap stack: int
         3: sipush 1237
      StackMap locals: io.vertx.proton.streams.ProtonPublisherOptions int
      StackMap stack: int int
         4: iadd
            istore 1 /* result */
         5: .line 149
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.vertx.proton.streams.ProtonPublisherOptions.shared:Z
            ifeq 6
            sipush 1231
            goto 7
      StackMap locals:
      StackMap stack: int
         6: sipush 1237
      StackMap locals: io.vertx.proton.streams.ProtonPublisherOptions int
      StackMap stack: int int
         7: iadd
            istore 1 /* result */
         8: .line 150
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.vertx.proton.streams.ProtonPublisherOptions.global:Z
            ifeq 9
            sipush 1231
            goto 10
      StackMap locals:
      StackMap stack: int
         9: sipush 1237
      StackMap locals: io.vertx.proton.streams.ProtonPublisherOptions int
      StackMap stack: int int
        10: iadd
            istore 1 /* result */
        11: .line 151
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.vertx.proton.streams.ProtonPublisherOptions.dynamic:Z
            ifeq 12
            sipush 1231
            goto 13
      StackMap locals:
      StackMap stack: int
        12: sipush 1237
      StackMap locals: io.vertx.proton.streams.ProtonPublisherOptions int
      StackMap stack: int int
        13: iadd
            istore 1 /* result */
        14: .line 152
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.vertx.proton.streams.ProtonPublisherOptions.maxOutstandingCredit:I
            iadd
            istore 1 /* result */
        15: .line 154
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // io.vertx.proton.streams.ProtonPublisherOptions this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   16     0    this  Lio/vertx/proton/streams/ProtonPublisherOptions;
            1   16     1  result  I

  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.proton.streams.ProtonPublisherOptions this
        start local 1 // java.lang.Object obj
         0: .line 159
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 2
         1: .line 160
            iconst_1
            ireturn
         2: .line 163
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            ifnull 3
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* obj */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            if_acmpeq 4
         3: .line 164
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         4: .line 167
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast io.vertx.proton.streams.ProtonPublisherOptions
            astore 2 /* other */
        start local 2 // io.vertx.proton.streams.ProtonPublisherOptions other
         5: .line 168
            aload 0 /* this */
            getfield io.vertx.proton.streams.ProtonPublisherOptions.linkName:Ljava/lang/String;
            aload 2 /* other */
            getfield io.vertx.proton.streams.ProtonPublisherOptions.linkName:Ljava/lang/String;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 7
         6: .line 169
            iconst_0
            ireturn
         7: .line 172
      StackMap locals: io.vertx.proton.streams.ProtonPublisherOptions
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.proton.streams.ProtonPublisherOptions.durable:Z
            aload 2 /* other */
            getfield io.vertx.proton.streams.ProtonPublisherOptions.durable:Z
            if_icmpeq 9
         8: .line 173
            iconst_0
            ireturn
         9: .line 176
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.proton.streams.ProtonPublisherOptions.shared:Z
            aload 2 /* other */
            getfield io.vertx.proton.streams.ProtonPublisherOptions.shared:Z
            if_icmpeq 11
        10: .line 177
            iconst_0
            ireturn
        11: .line 180
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.proton.streams.ProtonPublisherOptions.global:Z
            aload 2 /* other */
            getfield io.vertx.proton.streams.ProtonPublisherOptions.global:Z
            if_icmpeq 13
        12: .line 181
            iconst_0
            ireturn
        13: .line 184
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.proton.streams.ProtonPublisherOptions.dynamic:Z
            aload 2 /* other */
            getfield io.vertx.proton.streams.ProtonPublisherOptions.dynamic:Z
            if_icmpeq 15
        14: .line 185
            iconst_0
            ireturn
        15: .line 188
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.proton.streams.ProtonPublisherOptions.maxOutstandingCredit:I
            aload 2 /* other */
            getfield io.vertx.proton.streams.ProtonPublisherOptions.maxOutstandingCredit:I
            if_icmpeq 17
        16: .line 189
            iconst_0
            ireturn
        17: .line 192
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // io.vertx.proton.streams.ProtonPublisherOptions other
        end local 1 // java.lang.Object obj
        end local 0 // io.vertx.proton.streams.ProtonPublisherOptions this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   18     0   this  Lio/vertx/proton/streams/ProtonPublisherOptions;
            0   18     1    obj  Ljava/lang/Object;
            5   18     2  other  Lio/vertx/proton/streams/ProtonPublisherOptions;
    MethodParameters:
      Name  Flags
      obj   
}
SourceFile: "ProtonPublisherOptions.java"