Enum DefaultTransactionReversalStatuses

java.lang.Object
java.lang.Enum<DefaultTransactionReversalStatuses>
com.broadleafcommerce.paymenttransaction.domain.enums.DefaultTransactionReversalStatuses
All Implemented Interfaces:
TransactionReversalStatus, Serializable, Comparable<DefaultTransactionReversalStatuses>

public enum DefaultTransactionReversalStatuses extends Enum<DefaultTransactionReversalStatuses> implements TransactionReversalStatus
Describes the result of a PaymentTransaction's reversal.
Author:
Chris Kittrell (ckittrell)
  • Enum Constant Details

  • Method Details

    • values

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

      public static DefaultTransactionReversalStatuses valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null
    • isSuccess

      public static boolean isSuccess(String transactionReversalState)
    • isFailure

      public static boolean isFailure(String transactionReversalState)
    • shouldRetry

      public static boolean shouldRetry(String transactionReversalState)