public final class io.netty.handler.codec.http2.DefaultHttp2ResetFrame extends io.netty.handler.codec.http2.AbstractHttp2StreamFrame implements io.netty.handler.codec.http2.Http2ResetFrame
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.netty.handler.codec.http2.DefaultHttp2ResetFrame
  super_class: io.netty.handler.codec.http2.AbstractHttp2StreamFrame
{
  private final long errorCode;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(io.netty.handler.codec.http2.Http2Error);
    descriptor: (Lio/netty/handler/codec/http2/Http2Error;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2ResetFrame this
        start local 1 // io.netty.handler.codec.http2.Http2Error error
         0: .line 36
            aload 0 /* this */
            invokespecial io.netty.handler.codec.http2.AbstractHttp2StreamFrame.<init>:()V
         1: .line 37
            aload 0 /* this */
            aload 1 /* error */
            ldc "error"
            invokestatic io.netty.util.internal.ObjectUtil.checkNotNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            checkcast io.netty.handler.codec.http2.Http2Error
            invokevirtual io.netty.handler.codec.http2.Http2Error.code:()J
            putfield io.netty.handler.codec.http2.DefaultHttp2ResetFrame.errorCode:J
         2: .line 38
            return
        end local 1 // io.netty.handler.codec.http2.Http2Error error
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2ResetFrame this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/netty/handler/codec/http2/DefaultHttp2ResetFrame;
            0    3     1  error  Lio/netty/handler/codec/http2/Http2Error;
    MethodParameters:
       Name  Flags
      error  

  public void <init>(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2ResetFrame this
        start local 1 // long errorCode
         0: .line 45
            aload 0 /* this */
            invokespecial io.netty.handler.codec.http2.AbstractHttp2StreamFrame.<init>:()V
         1: .line 46
            aload 0 /* this */
            lload 1 /* errorCode */
            putfield io.netty.handler.codec.http2.DefaultHttp2ResetFrame.errorCode:J
         2: .line 47
            return
        end local 1 // long errorCode
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2ResetFrame this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lio/netty/handler/codec/http2/DefaultHttp2ResetFrame;
            0    3     1  errorCode  J
    MethodParameters:
           Name  Flags
      errorCode  

  public io.netty.handler.codec.http2.DefaultHttp2ResetFrame stream(io.netty.handler.codec.http2.Http2FrameStream);
    descriptor: (Lio/netty/handler/codec/http2/Http2FrameStream;)Lio/netty/handler/codec/http2/DefaultHttp2ResetFrame;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2ResetFrame this
        start local 1 // io.netty.handler.codec.http2.Http2FrameStream stream
         0: .line 51
            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 52
            aload 0 /* this */
            areturn
        end local 1 // io.netty.handler.codec.http2.Http2FrameStream stream
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2ResetFrame this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/netty/handler/codec/http2/DefaultHttp2ResetFrame;
            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.DefaultHttp2ResetFrame this
         0: .line 57
            ldc "RST_STREAM"
            areturn
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2ResetFrame this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/handler/codec/http2/DefaultHttp2ResetFrame;

  public long errorCode();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2ResetFrame this
         0: .line 62
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ResetFrame.errorCode:J
            lreturn
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2ResetFrame this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/handler/codec/http2/DefaultHttp2ResetFrame;

  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.DefaultHttp2ResetFrame this
         0: .line 67
            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.DefaultHttp2ResetFrame.stream:()Lio/netty/handler/codec/http2/Http2FrameStream;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc ", errorCode="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ResetFrame.errorCode:J
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            bipush 41
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2ResetFrame this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/handler/codec/http2/DefaultHttp2ResetFrame;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2ResetFrame this
        start local 1 // java.lang.Object o
         0: .line 72
            aload 1 /* o */
            instanceof io.netty.handler.codec.http2.DefaultHttp2ResetFrame
            ifne 2
         1: .line 73
            iconst_0
            ireturn
         2: .line 75
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast io.netty.handler.codec.http2.DefaultHttp2ResetFrame
            astore 2 /* other */
        start local 2 // io.netty.handler.codec.http2.DefaultHttp2ResetFrame other
         3: .line 76
            aload 0 /* this */
            aload 1 /* o */
            invokespecial io.netty.handler.codec.http2.AbstractHttp2StreamFrame.equals:(Ljava/lang/Object;)Z
            ifeq 4
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ResetFrame.errorCode:J
            aload 2 /* other */
            getfield io.netty.handler.codec.http2.DefaultHttp2ResetFrame.errorCode:J
            lcmp
            ifne 4
            iconst_1
            ireturn
      StackMap locals: io.netty.handler.codec.http2.DefaultHttp2ResetFrame
      StackMap stack:
         4: iconst_0
            ireturn
        end local 2 // io.netty.handler.codec.http2.DefaultHttp2ResetFrame other
        end local 1 // java.lang.Object o
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2ResetFrame this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lio/netty/handler/codec/http2/DefaultHttp2ResetFrame;
            0    5     1      o  Ljava/lang/Object;
            3    5     2  other  Lio/netty/handler/codec/http2/DefaultHttp2ResetFrame;
    MethodParameters:
      Name  Flags
      o     

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=1
        start local 0 // io.netty.handler.codec.http2.DefaultHttp2ResetFrame this
         0: .line 81
            aload 0 /* this */
            invokespecial io.netty.handler.codec.http2.AbstractHttp2StreamFrame.hashCode:()I
            istore 1 /* hash */
        start local 1 // int hash
         1: .line 82
            iload 1 /* hash */
            bipush 31
            imul
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ResetFrame.errorCode:J
            aload 0 /* this */
            getfield io.netty.handler.codec.http2.DefaultHttp2ResetFrame.errorCode:J
            bipush 32
            lushr
            lxor
            l2i
            iadd
            istore 1 /* hash */
         2: .line 83
            iload 1 /* hash */
            ireturn
        end local 1 // int hash
        end local 0 // io.netty.handler.codec.http2.DefaultHttp2ResetFrame this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/netty/handler/codec/http2/DefaultHttp2ResetFrame;
            1    3     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.DefaultHttp2ResetFrame.stream:(Lio/netty/handler/codec/http2/Http2FrameStream;)Lio/netty/handler/codec/http2/DefaultHttp2ResetFrame;
            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.DefaultHttp2ResetFrame.stream:(Lio/netty/handler/codec/http2/Http2FrameStream;)Lio/netty/handler/codec/http2/DefaultHttp2ResetFrame;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "DefaultHttp2ResetFrame.java"