Enum Class FundsAccount

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

public enum FundsAccount extends Enum<FundsAccount>
UNSETTLED - 未结算资金,退款所使用资金对应的资金账户类型 AVAILABLE - 可用余额,退款所使用资金对应的资金账户类型 UNAVAILABLE - 不可用余额,退款所使用资金对应的资金账户类型 OPERATION - 运营户,退款所使用资金对应的资金账户类型 BASIC - 基本账户(含可用余额和不可用余额),退款所使用资金对应的资金账户类型 ECNY_BASIC - 数字人民币基本账户,退款所使用资金对应的资金账户类型
  • Enum Constant Details

    • UNSETTLED

      @SerializedName("UNSETTLED") public static final FundsAccount UNSETTLED
    • AVAILABLE

      @SerializedName("AVAILABLE") public static final FundsAccount AVAILABLE
    • UNAVAILABLE

      @SerializedName("UNAVAILABLE") public static final FundsAccount UNAVAILABLE
    • OPERATION

      @SerializedName("OPERATION") public static final FundsAccount OPERATION
    • BASIC

      @SerializedName("BASIC") public static final FundsAccount BASIC
    • ECNY_BASIC

      @SerializedName("ECNY_BASIC") public static final FundsAccount ECNY_BASIC
  • Method Details

    • values

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