public class io.vertx.core.http.StreamPriority
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.core.http.StreamPriority
  super_class: java.lang.Object
{
  public static final int DEFAULT_DEPENDENCY;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  public static final short DEFAULT_WEIGHT;
    descriptor: S
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 16

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

  private short weight;
    descriptor: S
    flags: (0x0002) ACC_PRIVATE

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

  private boolean exclusive;
    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.core.http.StreamPriority this
         0: .line 32
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 33
            aload 0 /* this */
            bipush 16
            putfield io.vertx.core.http.StreamPriority.weight:S
         2: .line 34
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.http.StreamPriority.dependency:I
         3: .line 35
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.http.StreamPriority.exclusive:Z
         4: .line 36
            return
        end local 0 // io.vertx.core.http.StreamPriority this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/core/http/StreamPriority;

  public void <init>(io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/core/json/JsonObject;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.vertx.core.http.StreamPriority this
        start local 1 // io.vertx.core.json.JsonObject json
         0: .line 38
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 39
            aload 0 /* this */
            aload 1 /* json */
            ldc "weight"
            bipush 16
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual io.vertx.core.json.JsonObject.getInteger:(Ljava/lang/String;Ljava/lang/Integer;)Ljava/lang/Integer;
            invokevirtual java.lang.Integer.shortValue:()S
            putfield io.vertx.core.http.StreamPriority.weight:S
         2: .line 40
            aload 0 /* this */
            aload 1 /* json */
            ldc "dependency"
            iconst_0
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual io.vertx.core.json.JsonObject.getInteger:(Ljava/lang/String;Ljava/lang/Integer;)Ljava/lang/Integer;
            invokevirtual java.lang.Integer.intValue:()I
            putfield io.vertx.core.http.StreamPriority.dependency:I
         3: .line 41
            aload 0 /* this */
            aload 1 /* json */
            ldc "exclusive"
            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.core.http.StreamPriority.exclusive:Z
         4: .line 42
            return
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.core.http.StreamPriority this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/core/http/StreamPriority;
            0    5     1  json  Lio/vertx/core/json/JsonObject;
    MethodParameters:
      Name  Flags
      json  

  public void <init>(io.vertx.core.http.StreamPriority);
    descriptor: (Lio/vertx/core/http/StreamPriority;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.StreamPriority this
        start local 1 // io.vertx.core.http.StreamPriority other
         0: .line 44
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 45
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.http.StreamPriority.weight:S
            putfield io.vertx.core.http.StreamPriority.weight:S
         2: .line 46
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.http.StreamPriority.dependency:I
            putfield io.vertx.core.http.StreamPriority.dependency:I
         3: .line 47
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.http.StreamPriority.exclusive:Z
            putfield io.vertx.core.http.StreamPriority.exclusive:Z
         4: .line 48
            return
        end local 1 // io.vertx.core.http.StreamPriority other
        end local 0 // io.vertx.core.http.StreamPriority this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lio/vertx/core/http/StreamPriority;
            0    5     1  other  Lio/vertx/core/http/StreamPriority;
    MethodParameters:
       Name  Flags
      other  

  public short getWeight();
    descriptor: ()S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.StreamPriority this
         0: .line 55
            aload 0 /* this */
            getfield io.vertx.core.http.StreamPriority.weight:S
            ireturn
        end local 0 // io.vertx.core.http.StreamPriority this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/StreamPriority;

  public io.vertx.core.http.StreamPriority setWeight(short);
    descriptor: (S)Lio/vertx/core/http/StreamPriority;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.StreamPriority this
        start local 1 // short weight
         0: .line 65
            aload 0 /* this */
            iload 1 /* weight */
            putfield io.vertx.core.http.StreamPriority.weight:S
         1: .line 66
            aload 0 /* this */
            areturn
        end local 1 // short weight
        end local 0 // io.vertx.core.http.StreamPriority this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/vertx/core/http/StreamPriority;
            0    2     1  weight  S
    MethodParameters:
        Name  Flags
      weight  

  public int getDependency();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.StreamPriority this
         0: .line 73
            aload 0 /* this */
            getfield io.vertx.core.http.StreamPriority.dependency:I
            ireturn
        end local 0 // io.vertx.core.http.StreamPriority this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/StreamPriority;

  public io.vertx.core.http.StreamPriority setDependency(int);
    descriptor: (I)Lio/vertx/core/http/StreamPriority;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.StreamPriority this
        start local 1 // int dependency
         0: .line 83
            aload 0 /* this */
            iload 1 /* dependency */
            putfield io.vertx.core.http.StreamPriority.dependency:I
         1: .line 84
            aload 0 /* this */
            areturn
        end local 1 // int dependency
        end local 0 // io.vertx.core.http.StreamPriority this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lio/vertx/core/http/StreamPriority;
            0    2     1  dependency  I
    MethodParameters:
            Name  Flags
      dependency  

  public boolean isExclusive();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.StreamPriority this
         0: .line 91
            aload 0 /* this */
            getfield io.vertx.core.http.StreamPriority.exclusive:Z
            ireturn
        end local 0 // io.vertx.core.http.StreamPriority this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/StreamPriority;

  public io.vertx.core.http.StreamPriority setExclusive(boolean);
    descriptor: (Z)Lio/vertx/core/http/StreamPriority;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.StreamPriority this
        start local 1 // boolean exclusive
         0: .line 101
            aload 0 /* this */
            iload 1 /* exclusive */
            putfield io.vertx.core.http.StreamPriority.exclusive:Z
         1: .line 102
            aload 0 /* this */
            areturn
        end local 1 // boolean exclusive
        end local 0 // io.vertx.core.http.StreamPriority this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lio/vertx/core/http/StreamPriority;
            0    2     1  exclusive  Z
    MethodParameters:
           Name  Flags
      exclusive  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.core.http.StreamPriority this
         0: .line 108
            iconst_1
            istore 1 /* result */
        start local 1 // int result
         1: .line 109
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.vertx.core.http.StreamPriority.exclusive:Z
            ifeq 2
            sipush 1231
            goto 3
      StackMap locals: io.vertx.core.http.StreamPriority int
      StackMap stack: int
         2: sipush 1237
      StackMap locals: io.vertx.core.http.StreamPriority int
      StackMap stack: int int
         3: iadd
            istore 1 /* result */
         4: .line 110
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.vertx.core.http.StreamPriority.dependency:I
            iadd
            istore 1 /* result */
         5: .line 111
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.vertx.core.http.StreamPriority.weight:S
            iadd
            istore 1 /* result */
         6: .line 112
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // io.vertx.core.http.StreamPriority this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lio/vertx/core/http/StreamPriority;
            1    7     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.core.http.StreamPriority this
        start local 1 // java.lang.Object obj
         0: .line 117
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 1
            iconst_1
            ireturn
         1: .line 118
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            ifnonnull 2
            iconst_0
            ireturn
         2: .line 119
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* obj */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            if_acmpeq 3
            iconst_0
            ireturn
         3: .line 121
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast io.vertx.core.http.StreamPriority
            astore 2 /* other */
        start local 2 // io.vertx.core.http.StreamPriority other
         4: .line 122
            aload 0 /* this */
            getfield io.vertx.core.http.StreamPriority.exclusive:Z
            aload 2 /* other */
            getfield io.vertx.core.http.StreamPriority.exclusive:Z
            if_icmpeq 5
            iconst_0
            ireturn
         5: .line 123
      StackMap locals: io.vertx.core.http.StreamPriority
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.StreamPriority.dependency:I
            aload 2 /* other */
            getfield io.vertx.core.http.StreamPriority.dependency:I
            if_icmpeq 6
            iconst_0
            ireturn
         6: .line 124
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.StreamPriority.weight:S
            aload 2 /* other */
            getfield io.vertx.core.http.StreamPriority.weight:S
            if_icmpeq 7
            iconst_0
            ireturn
         7: .line 126
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // io.vertx.core.http.StreamPriority other
        end local 1 // java.lang.Object obj
        end local 0 // io.vertx.core.http.StreamPriority this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lio/vertx/core/http/StreamPriority;
            0    8     1    obj  Ljava/lang/Object;
            4    8     2  other  Lio/vertx/core/http/StreamPriority;
    MethodParameters:
      Name  Flags
      obj   

  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.core.http.StreamPriority this
         0: .line 130
            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 131
            aload 1 /* json */
            ldc "weight"
            aload 0 /* this */
            getfield io.vertx.core.http.StreamPriority.weight:S
            invokestatic java.lang.Short.valueOf:(S)Ljava/lang/Short;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            pop
         2: .line 132
            aload 1 /* json */
            ldc "dependency"
            aload 0 /* this */
            getfield io.vertx.core.http.StreamPriority.dependency:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            pop
         3: .line 133
            aload 1 /* json */
            ldc "exclusive"
            aload 0 /* this */
            getfield io.vertx.core.http.StreamPriority.exclusive:Z
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            pop
         4: .line 134
            aload 1 /* json */
            areturn
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.core.http.StreamPriority this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/core/http/StreamPriority;
            1    5     1  json  Lio/vertx/core/json/JsonObject;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.http.StreamPriority this
         0: .line 139
            new java.lang.StringBuilder
            dup
            ldc "StreamPriority [weight="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield io.vertx.core.http.StreamPriority.weight:S
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", dependency="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.vertx.core.http.StreamPriority.dependency:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", exclusive="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.vertx.core.http.StreamPriority.exclusive:Z
            invokevirtual java.lang.StringBuilder.append:(Z)Ljava/lang/StringBuilder;
            ldc "]"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.http.StreamPriority this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/StreamPriority;
}
SourceFile: "StreamPriority.java"
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.DataObject()