Enum Class BillType

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

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

    • ALL

      @SerializedName("ALL") public static final BillType ALL
    • SUCCESS

      @SerializedName("SUCCESS") public static final BillType SUCCESS
    • REFUND

      @SerializedName("REFUND") public static final BillType REFUND
    • RECHARGE_REFUND

      @SerializedName("RECHARGE_REFUND") public static final BillType RECHARGE_REFUND
    • ALL_SPECIAL

      @SerializedName("ALL_SPECIAL") public static final BillType ALL_SPECIAL
    • SUC_SPECIAL

      @SerializedName("SUC_SPECIAL") public static final BillType SUC_SPECIAL
    • REF_SPECIAL

      @SerializedName("REF_SPECIAL") public static final BillType REF_SPECIAL
  • Method Details

    • values

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