Enum Class ProductFlowStatus

java.lang.Object
java.lang.Enum<ProductFlowStatus>
io.appmetrica.analytics.productflow.ProductFlowStatus
All Implemented Interfaces:
Serializable, Comparable<ProductFlowStatus>, Constable

public enum ProductFlowStatus extends Enum<ProductFlowStatus>
Final outcome of a product flow.
  • Enum Constant Details

    • SUCCESS

      public static final ProductFlowStatus SUCCESS
      The product flow completed successfully.
    • DECLINED

      public static final ProductFlowStatus DECLINED
      The product flow was declined by the system or counterparty.
    • PENDING

      public static final ProductFlowStatus PENDING
      The product flow is awaiting a decision.
    • CANCELLED

      public static final ProductFlowStatus CANCELLED
      The product flow was cancelled by the user.
    • EXPIRED

      public static final ProductFlowStatus EXPIRED
      The product flow expired before completion.
    • FAIL

      public static final ProductFlowStatus FAIL
      The product flow failed due to a technical error.
  • Method Details

    • values

      public static ProductFlowStatus[] 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 ProductFlowStatus 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