public final class org.apache.commons.net.smtp.SMTPReply
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.apache.commons.net.smtp.SMTPReply
  super_class: java.lang.Object
{
  public static final int SYSTEM_STATUS;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 211

  public static final int HELP_MESSAGE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 214

  public static final int SERVICE_READY;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 220

  public static final int SERVICE_CLOSING_TRANSMISSION_CHANNEL;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 221

  public static final int ACTION_OK;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 250

  public static final int USER_NOT_LOCAL_WILL_FORWARD;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 251

  public static final int START_MAIL_INPUT;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 354

  public static final int SERVICE_NOT_AVAILABLE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 421

  public static final int ACTION_NOT_TAKEN;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 450

  public static final int ACTION_ABORTED;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 451

  public static final int INSUFFICIENT_STORAGE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 452

  public static final int UNRECOGNIZED_COMMAND;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 500

  public static final int SYNTAX_ERROR_IN_ARGUMENTS;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 501

  public static final int COMMAND_NOT_IMPLEMENTED;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 502

  public static final int BAD_COMMAND_SEQUENCE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 503

  public static final int COMMAND_NOT_IMPLEMENTED_FOR_PARAMETER;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 504

  public static final int MAILBOX_UNAVAILABLE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 550

  public static final int USER_NOT_LOCAL;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 551

  public static final int STORAGE_ALLOCATION_EXCEEDED;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 552

  public static final int MAILBOX_NAME_NOT_ALLOWED;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 553

  public static final int TRANSACTION_FAILED;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 554

  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.net.smtp.SMTPReply this
         0: .line 53
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 54
            return
        end local 0 // org.apache.commons.net.smtp.SMTPReply this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/net/smtp/SMTPReply;

  public static boolean isPositivePreliminary(int);
    descriptor: (I)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // int reply
         0: .line 73
            iload 0 /* reply */
            bipush 100
            if_icmplt 1
            iload 0 /* reply */
            sipush 200
            if_icmpge 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // int reply
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0  reply  I
    MethodParameters:
       Name  Flags
      reply  

  public static boolean isPositiveCompletion(int);
    descriptor: (I)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // int reply
         0: .line 88
            iload 0 /* reply */
            sipush 200
            if_icmplt 1
            iload 0 /* reply */
            sipush 300
            if_icmpge 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // int reply
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0  reply  I
    MethodParameters:
       Name  Flags
      reply  

  public static boolean isPositiveIntermediate(int);
    descriptor: (I)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // int reply
         0: .line 106
            iload 0 /* reply */
            sipush 300
            if_icmplt 1
            iload 0 /* reply */
            sipush 400
            if_icmpge 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // int reply
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0  reply  I
    MethodParameters:
       Name  Flags
      reply  

  public static boolean isNegativeTransient(int);
    descriptor: (I)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // int reply
         0: .line 121
            iload 0 /* reply */
            sipush 400
            if_icmplt 1
            iload 0 /* reply */
            sipush 500
            if_icmpge 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // int reply
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0  reply  I
    MethodParameters:
       Name  Flags
      reply  

  public static boolean isNegativePermanent(int);
    descriptor: (I)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // int reply
         0: .line 136
            iload 0 /* reply */
            sipush 500
            if_icmplt 1
            iload 0 /* reply */
            sipush 600
            if_icmpge 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // int reply
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0  reply  I
    MethodParameters:
       Name  Flags
      reply  
}
SourceFile: "SMTPReply.java"