public class io.netty.handler.codec.DecoderResult
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.netty.handler.codec.DecoderResult
  super_class: java.lang.Object
{
  protected static final io.netty.util.Signal SIGNAL_UNFINISHED;
    descriptor: Lio/netty/util/Signal;
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL

  protected static final io.netty.util.Signal SIGNAL_SUCCESS;
    descriptor: Lio/netty/util/Signal;
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL

  public static final io.netty.handler.codec.DecoderResult UNFINISHED;
    descriptor: Lio/netty/handler/codec/DecoderResult;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final io.netty.handler.codec.DecoderResult SUCCESS;
    descriptor: Lio/netty/handler/codec/DecoderResult;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  private final java.lang.Throwable cause;
    descriptor: Ljava/lang/Throwable;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 22
            ldc Lio/netty/handler/codec/DecoderResult;
            ldc "UNFINISHED"
            invokestatic io.netty.util.Signal.valueOf:(Ljava/lang/Class;Ljava/lang/String;)Lio/netty/util/Signal;
            putstatic io.netty.handler.codec.DecoderResult.SIGNAL_UNFINISHED:Lio/netty/util/Signal;
         1: .line 23
            ldc Lio/netty/handler/codec/DecoderResult;
            ldc "SUCCESS"
            invokestatic io.netty.util.Signal.valueOf:(Ljava/lang/Class;Ljava/lang/String;)Lio/netty/util/Signal;
            putstatic io.netty.handler.codec.DecoderResult.SIGNAL_SUCCESS:Lio/netty/util/Signal;
         2: .line 25
            new io.netty.handler.codec.DecoderResult
            dup
            getstatic io.netty.handler.codec.DecoderResult.SIGNAL_UNFINISHED:Lio/netty/util/Signal;
            invokespecial io.netty.handler.codec.DecoderResult.<init>:(Ljava/lang/Throwable;)V
            putstatic io.netty.handler.codec.DecoderResult.UNFINISHED:Lio/netty/handler/codec/DecoderResult;
         3: .line 26
            new io.netty.handler.codec.DecoderResult
            dup
            getstatic io.netty.handler.codec.DecoderResult.SIGNAL_SUCCESS:Lio/netty/util/Signal;
            invokespecial io.netty.handler.codec.DecoderResult.<init>:(Ljava/lang/Throwable;)V
            putstatic io.netty.handler.codec.DecoderResult.SUCCESS:Lio/netty/handler/codec/DecoderResult;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static io.netty.handler.codec.DecoderResult failure(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)Lio/netty/handler/codec/DecoderResult;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.lang.Throwable cause
         0: .line 29
            aload 0 /* cause */
            ifnonnull 2
         1: .line 30
            new java.lang.NullPointerException
            dup
            ldc "cause"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 32
      StackMap locals:
      StackMap stack:
            new io.netty.handler.codec.DecoderResult
            dup
            aload 0 /* cause */
            invokespecial io.netty.handler.codec.DecoderResult.<init>:(Ljava/lang/Throwable;)V
            areturn
        end local 0 // java.lang.Throwable cause
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0  cause  Ljava/lang/Throwable;
    MethodParameters:
       Name  Flags
      cause  

  protected void <init>(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.handler.codec.DecoderResult this
        start local 1 // java.lang.Throwable cause
         0: .line 37
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 38
            aload 1 /* cause */
            ifnonnull 3
         2: .line 39
            new java.lang.NullPointerException
            dup
            ldc "cause"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 41
      StackMap locals: io.netty.handler.codec.DecoderResult java.lang.Throwable
      StackMap stack:
            aload 0 /* this */
            aload 1 /* cause */
            putfield io.netty.handler.codec.DecoderResult.cause:Ljava/lang/Throwable;
         4: .line 42
            return
        end local 1 // java.lang.Throwable cause
        end local 0 // io.netty.handler.codec.DecoderResult this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lio/netty/handler/codec/DecoderResult;
            0    5     1  cause  Ljava/lang/Throwable;
    MethodParameters:
       Name  Flags
      cause  

  public boolean isFinished();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.DecoderResult this
         0: .line 45
            aload 0 /* this */
            getfield io.netty.handler.codec.DecoderResult.cause:Ljava/lang/Throwable;
            getstatic io.netty.handler.codec.DecoderResult.SIGNAL_UNFINISHED:Lio/netty/util/Signal;
            if_acmpeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.netty.handler.codec.DecoderResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/handler/codec/DecoderResult;

  public boolean isSuccess();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.DecoderResult this
         0: .line 49
            aload 0 /* this */
            getfield io.netty.handler.codec.DecoderResult.cause:Ljava/lang/Throwable;
            getstatic io.netty.handler.codec.DecoderResult.SIGNAL_SUCCESS:Lio/netty/util/Signal;
            if_acmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.netty.handler.codec.DecoderResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/handler/codec/DecoderResult;

  public boolean isFailure();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.DecoderResult this
         0: .line 53
            aload 0 /* this */
            getfield io.netty.handler.codec.DecoderResult.cause:Ljava/lang/Throwable;
            getstatic io.netty.handler.codec.DecoderResult.SIGNAL_SUCCESS:Lio/netty/util/Signal;
            if_acmpeq 1
            aload 0 /* this */
            getfield io.netty.handler.codec.DecoderResult.cause:Ljava/lang/Throwable;
            getstatic io.netty.handler.codec.DecoderResult.SIGNAL_UNFINISHED:Lio/netty/util/Signal;
            if_acmpeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.netty.handler.codec.DecoderResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/handler/codec/DecoderResult;

  public java.lang.Throwable cause();
    descriptor: ()Ljava/lang/Throwable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.DecoderResult this
         0: .line 57
            aload 0 /* this */
            invokevirtual io.netty.handler.codec.DecoderResult.isFailure:()Z
            ifeq 2
         1: .line 58
            aload 0 /* this */
            getfield io.netty.handler.codec.DecoderResult.cause:Ljava/lang/Throwable;
            areturn
         2: .line 60
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 0 // io.netty.handler.codec.DecoderResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/netty/handler/codec/DecoderResult;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // io.netty.handler.codec.DecoderResult this
         0: .line 66
            aload 0 /* this */
            invokevirtual io.netty.handler.codec.DecoderResult.isFinished:()Z
            ifeq 10
         1: .line 67
            aload 0 /* this */
            invokevirtual io.netty.handler.codec.DecoderResult.isSuccess:()Z
            ifeq 3
         2: .line 68
            ldc "success"
            areturn
         3: .line 71
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.netty.handler.codec.DecoderResult.cause:()Ljava/lang/Throwable;
            invokevirtual java.lang.Throwable.toString:()Ljava/lang/String;
            astore 1 /* cause */
        start local 1 // java.lang.String cause
         4: .line 72
            new java.lang.StringBuilder
            dup
            aload 1 /* cause */
            invokevirtual java.lang.String.length:()I
            bipush 17
            iadd
            invokespecial java.lang.StringBuilder.<init>:(I)V
         5: .line 73
            ldc "failure("
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         6: .line 74
            aload 1 /* cause */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         7: .line 75
            bipush 41
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
         8: .line 76
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         9: .line 72
            areturn
        end local 1 // java.lang.String cause
        10: .line 78
      StackMap locals:
      StackMap stack:
            ldc "unfinished"
            areturn
        end local 0 // io.netty.handler.codec.DecoderResult this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   11     0   this  Lio/netty/handler/codec/DecoderResult;
            4   10     1  cause  Ljava/lang/String;
}
SourceFile: "DecoderResult.java"