Enum Class ActStatus

java.lang.Object
java.lang.Enum<ActStatus>
com.wechat.pay.java.service.giftactivity.model.ActStatus
All Implemented Interfaces:
Serializable, Comparable<ActStatus>, Constable

public enum ActStatus extends Enum<ActStatus>
ActStatus
  • Enum Constant Details

    • ACT_STATUS_UNKNOWN

      @SerializedName("ACT_STATUS_UNKNOWN") public static final ActStatus ACT_STATUS_UNKNOWN
    • CREATE_ACT_STATUS

      @SerializedName("CREATE_ACT_STATUS") public static final ActStatus CREATE_ACT_STATUS
    • ONGOING_ACT_STATUS

      @SerializedName("ONGOING_ACT_STATUS") public static final ActStatus ONGOING_ACT_STATUS
    • TERMINATE_ACT_STATUS

      @SerializedName("TERMINATE_ACT_STATUS") public static final ActStatus TERMINATE_ACT_STATUS
    • STOP_ACT_STATUS

      @SerializedName("STOP_ACT_STATUS") public static final ActStatus STOP_ACT_STATUS
    • OVER_TIME_ACT_STATUS

      @SerializedName("OVER_TIME_ACT_STATUS") public static final ActStatus OVER_TIME_ACT_STATUS
    • CREATE_ACT_FAILED

      @SerializedName("CREATE_ACT_FAILED") public static final ActStatus CREATE_ACT_FAILED
  • Method Details

    • values

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