public class io.netty.handler.codec.http.DefaultHttpObject implements io.netty.handler.codec.http.HttpObject
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.netty.handler.codec.http.DefaultHttpObject
  super_class: java.lang.Object
{
  private static final int HASH_CODE_PRIME;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 31

  private io.netty.handler.codec.DecoderResult decoderResult;
    descriptor: Lio/netty/handler/codec/DecoderResult;
    flags: (0x0002) ACC_PRIVATE

  protected void <init>();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.http.DefaultHttpObject this
         0: .line 25
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 23
            aload 0 /* this */
            getstatic io.netty.handler.codec.DecoderResult.SUCCESS:Lio/netty/handler/codec/DecoderResult;
            putfield io.netty.handler.codec.http.DefaultHttpObject.decoderResult:Lio/netty/handler/codec/DecoderResult;
         2: .line 27
            return
        end local 0 // io.netty.handler.codec.http.DefaultHttpObject this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/netty/handler/codec/http/DefaultHttpObject;

  public io.netty.handler.codec.DecoderResult decoderResult();
    descriptor: ()Lio/netty/handler/codec/DecoderResult;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.http.DefaultHttpObject this
         0: .line 31
            aload 0 /* this */
            getfield io.netty.handler.codec.http.DefaultHttpObject.decoderResult:Lio/netty/handler/codec/DecoderResult;
            areturn
        end local 0 // io.netty.handler.codec.http.DefaultHttpObject this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/handler/codec/http/DefaultHttpObject;

  public io.netty.handler.codec.DecoderResult getDecoderResult();
    descriptor: ()Lio/netty/handler/codec/DecoderResult;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.http.DefaultHttpObject this
         0: .line 37
            aload 0 /* this */
            invokevirtual io.netty.handler.codec.http.DefaultHttpObject.decoderResult:()Lio/netty/handler/codec/DecoderResult;
            areturn
        end local 0 // io.netty.handler.codec.http.DefaultHttpObject this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/handler/codec/http/DefaultHttpObject;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()

  public void setDecoderResult(io.netty.handler.codec.DecoderResult);
    descriptor: (Lio/netty/handler/codec/DecoderResult;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.handler.codec.http.DefaultHttpObject this
        start local 1 // io.netty.handler.codec.DecoderResult decoderResult
         0: .line 42
            aload 1 /* decoderResult */
            ifnonnull 2
         1: .line 43
            new java.lang.NullPointerException
            dup
            ldc "decoderResult"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 45
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* decoderResult */
            putfield io.netty.handler.codec.http.DefaultHttpObject.decoderResult:Lio/netty/handler/codec/DecoderResult;
         3: .line 46
            return
        end local 1 // io.netty.handler.codec.DecoderResult decoderResult
        end local 0 // io.netty.handler.codec.http.DefaultHttpObject this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    4     0           this  Lio/netty/handler/codec/http/DefaultHttpObject;
            0    4     1  decoderResult  Lio/netty/handler/codec/DecoderResult;
    MethodParameters:
               Name  Flags
      decoderResult  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.netty.handler.codec.http.DefaultHttpObject this
         0: .line 50
            iconst_1
            istore 1 /* result */
        start local 1 // int result
         1: .line 51
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.netty.handler.codec.http.DefaultHttpObject.decoderResult:Lio/netty/handler/codec/DecoderResult;
            invokevirtual java.lang.Object.hashCode:()I
            iadd
            istore 1 /* result */
         2: .line 52
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // io.netty.handler.codec.http.DefaultHttpObject this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lio/netty/handler/codec/http/DefaultHttpObject;
            1    3     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.netty.handler.codec.http.DefaultHttpObject this
        start local 1 // java.lang.Object o
         0: .line 57
            aload 1 /* o */
            instanceof io.netty.handler.codec.http.DefaultHttpObject
            ifne 2
         1: .line 58
            iconst_0
            ireturn
         2: .line 61
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast io.netty.handler.codec.http.DefaultHttpObject
            astore 2 /* other */
        start local 2 // io.netty.handler.codec.http.DefaultHttpObject other
         3: .line 63
            aload 0 /* this */
            invokevirtual io.netty.handler.codec.http.DefaultHttpObject.decoderResult:()Lio/netty/handler/codec/DecoderResult;
            aload 2 /* other */
            invokevirtual io.netty.handler.codec.http.DefaultHttpObject.decoderResult:()Lio/netty/handler/codec/DecoderResult;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 2 // io.netty.handler.codec.http.DefaultHttpObject other
        end local 1 // java.lang.Object o
        end local 0 // io.netty.handler.codec.http.DefaultHttpObject this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lio/netty/handler/codec/http/DefaultHttpObject;
            0    4     1      o  Ljava/lang/Object;
            3    4     2  other  Lio/netty/handler/codec/http/DefaultHttpObject;
    MethodParameters:
      Name  Flags
      o     
}
SourceFile: "DefaultHttpObject.java"