public final class io.netty.handler.codec.http2.DefaultHttp2HeadersFrame extends io.netty.handler.codec.http2.AbstractHttp2StreamFrame implements io.netty.handler.codec.http2.Http2HeadersFrame
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.netty.handler.codec.http2.DefaultHttp2HeadersFrame
  super_class: io.netty.handler.codec.http2.AbstractHttp2StreamFrame
{
  private final io.netty.handler.codec.http2.Http2Headers headers;
    descriptor: Lio/netty/handler/codec/http2/Http2Headers;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean endStream;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int padding;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(io.netty.handler.codec.http2.Http2Headers);
    descriptor: (Lio/netty/handler/codec/http2/Http2Headers;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2HeadersFrame this
        start local 1 // io.netty.handler.codec.http2.Http2Headers headers
         0: .line 39
            aload 0 /* this */
            aload 1 /* headers */
            iconst_0
            invokespecial io.netty.handler.codec.http2.DefaultHttp2HeadersFrame.<init>:(Lio/netty/handler/codec/http2/Http2Headers;Z)V
         1: .line 40
            return
        end local 1 // io.netty.handler.codec.http2.Http2Headers headers
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2HeadersFrame this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/netty/handler/codec/http2/DefaultHttp2HeadersFrame;
            0    2     1  headers  Lio/netty/handler/codec/http2/Http2Headers;
    MethodParameters:
         Name  Flags
      headers  

  public void <init>(io.netty.handler.codec.http2.Http2Headers, boolean);
    descriptor: (Lio/netty/handler/codec/http2/Http2Headers;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2HeadersFrame this
        start local 1 // io.netty.handler.codec.http2.Http2Headers headers
        start local 2 // boolean endStream
         0: .line 48
            aload 0 /* this */
            aload 1 /* headers */
            iload 2 /* endStream */
            iconst_0
            invokespecial io.netty.handler.codec.http2.DefaultHttp2HeadersFrame.<init>:(Lio/netty/handler/codec/http2/Http2Headers;ZI)V
         1: .line 49
            return
        end local 2 // boolean endStream
        end local 1 // io.netty.handler.codec.http2.Http2Headers headers
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2HeadersFrame this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lio/netty/handler/codec/http2/DefaultHttp2HeadersFrame;
            0    2     1    headers  Lio/netty/handler/codec/http2/Http2Headers;
            0    2     2  endStream  Z
    MethodParameters:
           Name  Flags
      headers    
      endStream  

  public void <init>(io.netty.handler.codec.http2.Http2Headers, boolean, int);
    descriptor: (Lio/netty/handler/codec/http2/Http2Headers;ZI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2HeadersFrame this
        start local 1 // io.netty.handler.codec.http2.Http2Headers headers
        start local 2 // boolean endStream
        start local 3 // int padding
         0: .line 59
            aload 0 /* this */
            invokespecial io.netty.handler.codec.http2.AbstractHttp2StreamFrame.<init>:()V
         1: .line 60
            aload 0 /* this */
            aload 1 /* headers */
            ldc "headers"
            invokestatic io.netty.util.internal.ObjectUtil.checkNotNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            checkcast io.netty.handler.codec.http2.Http2Headers
            putfield io.netty.handler.codec.http2.DefaultHttp2HeadersFrame.headers:Lio/netty/handler/codec/http2/Http2Headers;
         2: .line 61
            aload 0 /* this */
            iload 2 /* endStream */
            putfield io.netty.handler.codec.http2.DefaultHttp2HeadersFrame.endStream:Z
         3: .line 62
            iload 3 /* padding */
            invokestatic io.netty.handler.codec.http2.Http2CodecUtil.verifyPadding:(I)V
         4: .line 63
            aload 0 /* this */
            iload 3 /* padding */
            putfield io.netty.handler.codec.http2.DefaultHttp2HeadersFrame.padding:I
         5: .line 64
            return
        end local 3 // int padding
        end local 2 // boolean endStream
        end local 1 // io.netty.handler.codec.http2.Http2Headers headers
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2HeadersFrame this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lio/netty/handler/codec/http2/DefaultHttp2HeadersFrame;
            0    6     1    headers  Lio/netty/handler/codec/http2/Http2Headers;
            0    6     2  endStream  Z
            0    6     3    padding  I
    MethodParameters:
           Name  Flags
      headers    
      endStream  
      padding    

  public io.netty.handler.codec.http2.DefaultHttp2HeadersFrame stream(io.netty.handler.codec.http2.Http2FrameStream);
    descriptor: (Lio/netty/handler/codec/http2/Http2FrameStream;)Lio/netty/handler/codec/http2/DefaultHttp2HeadersFrame;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2HeadersFrame this
        start local 1 // io.netty.handler.codec.http2.Http2FrameStream stream
         0: .line 68
            aload 0 /* this */
            aload 1 /* stream */
            invokespecial io.netty.handler.codec.http2.AbstractHttp2StreamFrame.stream:(Lio/netty/handler/codec/http2/Http2FrameStream;)Lio/netty/handler/codec/http2/AbstractHttp2StreamFrame;
            pop
         1: .line 69
            aload 0 /* this */
            areturn
        end local 1 // io.netty.handler.codec.http2.Http2FrameStream stream
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2HeadersFrame this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/netty/handler/codec/http2/DefaultHttp2HeadersFrame;
            0    2     1  stream  Lio/netty/handler/codec/http2/Http2FrameStream;
    MethodParameters:
        Name  Flags
      stream  

  public java.lang.String name();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2HeadersFrame this
         0: .line 74
            ldc "HEADERS"
            areturn
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2HeadersFrame this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/handler/codec/http2/DefaultHttp2HeadersFrame;

  public io.netty.handler.codec.http2.Http2Headers headers();
    descriptor: ()Lio/netty/handler/codec/http2/Http2Headers;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2HeadersFrame this
         0: .line 79
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2HeadersFrame.headers:Lio/netty/handler/codec/http2/Http2Headers;
            areturn
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2HeadersFrame this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/handler/codec/http2/DefaultHttp2HeadersFrame;

  public boolean isEndStream();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2HeadersFrame this
         0: .line 84
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2HeadersFrame.endStream:Z
            ireturn
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2HeadersFrame this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/handler/codec/http2/DefaultHttp2HeadersFrame;

  public int padding();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2HeadersFrame this
         0: .line 89
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2HeadersFrame.padding:I
            ireturn
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2HeadersFrame this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/handler/codec/http2/DefaultHttp2HeadersFrame;

  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.netty.handler.codec.http2.DefaultHttp2HeadersFrame this
         0: .line 94
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokestatic io.netty.util.internal.StringUtil.simpleClassName:(Ljava/lang/Object;)Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc "(stream="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            invokevirtual io.netty.handler.codec.http2.DefaultHttp2HeadersFrame.stream:()Lio/netty/handler/codec/http2/Http2FrameStream;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc ", headers="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2HeadersFrame.headers:Lio/netty/handler/codec/http2/Http2Headers;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         1: .line 95
            ldc ", endStream="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2HeadersFrame.endStream:Z
            invokevirtual java.lang.StringBuilder.append:(Z)Ljava/lang/StringBuilder;
            ldc ", padding="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2HeadersFrame.padding:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            bipush 41
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
         2: .line 94
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2HeadersFrame this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/netty/handler/codec/http2/DefaultHttp2HeadersFrame;

  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.netty.handler.codec.http2.DefaultHttp2HeadersFrame this
        start local 1 // java.lang.Object o
         0: .line 100
            aload 1 /* o */
            instanceof io.netty.handler.codec.http2.DefaultHttp2HeadersFrame
            ifne 2
         1: .line 101
            iconst_0
            ireturn
         2: .line 103
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast io.netty.handler.codec.http2.DefaultHttp2HeadersFrame
            astore 2 /* other */
        start local 2 // io.netty.handler.codec.http2.DefaultHttp2HeadersFrame other
         3: .line 104
            aload 0 /* this */
            aload 2 /* other */
            invokespecial io.netty.handler.codec.http2.AbstractHttp2StreamFrame.equals:(Ljava/lang/Object;)Z
            ifeq 6
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2HeadersFrame.headers:Lio/netty/handler/codec/http2/Http2Headers;
            aload 2 /* other */
            getfield io.netty.handler.codec.http2.DefaultHttp2HeadersFrame.headers:Lio/netty/handler/codec/http2/Http2Headers;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 6
         4: .line 105
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2HeadersFrame.endStream:Z
            aload 2 /* other */
            getfield io.netty.handler.codec.http2.DefaultHttp2HeadersFrame.endStream:Z
            if_icmpne 6
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2HeadersFrame.padding:I
            aload 2 /* other */
            getfield io.netty.handler.codec.http2.DefaultHttp2HeadersFrame.padding:I
            if_icmpne 6
         5: .line 104
            iconst_1
            ireturn
      StackMap locals: io.netty.handler.codec.http2.DefaultHttp2HeadersFrame
      StackMap stack:
         6: iconst_0
            ireturn
        end local 2 // io.netty.handler.codec.http2.DefaultHttp2HeadersFrame other
        end local 1 // java.lang.Object o
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2HeadersFrame this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lio/netty/handler/codec/http2/DefaultHttp2HeadersFrame;
            0    7     1      o  Ljava/lang/Object;
            3    7     2  other  Lio/netty/handler/codec/http2/DefaultHttp2HeadersFrame;
    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.netty.handler.codec.http2.DefaultHttp2HeadersFrame this
         0: .line 110
            aload 0 /* this */
            invokespecial io.netty.handler.codec.http2.AbstractHttp2StreamFrame.hashCode:()I
            istore 1 /* hash */
        start local 1 // int hash
         1: .line 111
            iload 1 /* hash */
            bipush 31
            imul
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2HeadersFrame.headers:Lio/netty/handler/codec/http2/Http2Headers;
            invokevirtual java.lang.Object.hashCode:()I
            iadd
            istore 1 /* hash */
         2: .line 112
            iload 1 /* hash */
            bipush 31
            imul
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2HeadersFrame.endStream:Z
            ifeq 3
            iconst_0
            goto 4
      StackMap locals: io.netty.handler.codec.http2.DefaultHttp2HeadersFrame int
      StackMap stack: int
         3: iconst_1
      StackMap locals: io.netty.handler.codec.http2.DefaultHttp2HeadersFrame int
      StackMap stack: int int
         4: iadd
            istore 1 /* hash */
         5: .line 113
            iload 1 /* hash */
            bipush 31
            imul
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2HeadersFrame.padding:I
            iadd
            istore 1 /* hash */
         6: .line 114
            iload 1 /* hash */
            ireturn
        end local 1 // int hash
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2HeadersFrame this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lio/netty/handler/codec/http2/DefaultHttp2HeadersFrame;
            1    7     1  hash  I

  public io.netty.handler.codec.http2.AbstractHttp2StreamFrame stream(io.netty.handler.codec.http2.Http2FrameStream);
    descriptor: (Lio/netty/handler/codec/http2/Http2FrameStream;)Lio/netty/handler/codec/http2/AbstractHttp2StreamFrame;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.netty.handler.codec.http2.DefaultHttp2HeadersFrame.stream:(Lio/netty/handler/codec/http2/Http2FrameStream;)Lio/netty/handler/codec/http2/DefaultHttp2HeadersFrame;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.netty.handler.codec.http2.Http2StreamFrame stream(io.netty.handler.codec.http2.Http2FrameStream);
    descriptor: (Lio/netty/handler/codec/http2/Http2FrameStream;)Lio/netty/handler/codec/http2/Http2StreamFrame;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.netty.handler.codec.http2.DefaultHttp2HeadersFrame.stream:(Lio/netty/handler/codec/http2/Http2FrameStream;)Lio/netty/handler/codec/http2/DefaultHttp2HeadersFrame;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "DefaultHttp2HeadersFrame.java"