Enum Class CaseDecision

java.lang.Object
java.lang.Enum<CaseDecision>
com.bhn.payment.common.enums.CaseDecision
All Implemented Interfaces:
Serializable, Comparable<CaseDecision>, Constable

public enum CaseDecision extends Enum<CaseDecision>

CaseDecision class.

Version:
$Id: $Id
Author:
pvela00
  • Enum Constant Details

    • APPROVED

      public static final CaseDecision APPROVED
    • REJECTED

      public static final CaseDecision REJECTED
    • REVIEW

      public static final CaseDecision REVIEW
    • ADDITIONAL_ACTION_REQUIRED

      public static final CaseDecision ADDITIONAL_ACTION_REQUIRED
  • Method Details

    • values

      public static CaseDecision[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static CaseDecision valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null