public enum WechatAccountTradeType extends Enum<WechatAccountTradeType>
| 限定符和类型 | 类和说明 |
|---|---|
static class |
WechatAccountTradeType.Adapter |
| 枚举常量和说明 |
|---|
ADVERTISER_CHARGE |
ADVERTISER_TRANSFER |
AGENCY_CHARGE |
AGENCY_CREDIT_REPAY |
AGENCY_REFUND |
AGENCY_REFUND_FROM_ADVERTISER |
AGENCY_TRANSFER_TO_ADVERTISER |
| 限定符和类型 | 方法和说明 |
|---|---|
static WechatAccountTradeType |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static WechatAccountTradeType |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static WechatAccountTradeType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final WechatAccountTradeType AGENCY_CHARGE
public static final WechatAccountTradeType AGENCY_TRANSFER_TO_ADVERTISER
public static final WechatAccountTradeType AGENCY_REFUND_FROM_ADVERTISER
public static final WechatAccountTradeType AGENCY_CREDIT_REPAY
public static final WechatAccountTradeType AGENCY_REFUND
public static final WechatAccountTradeType ADVERTISER_CHARGE
public static final WechatAccountTradeType ADVERTISER_TRANSFER
public static WechatAccountTradeType[] values()
for (WechatAccountTradeType c : WechatAccountTradeType.values()) System.out.println(c);
public static WechatAccountTradeType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public String getValue()
public String toString()
toString 在类中 Enum<WechatAccountTradeType>public static WechatAccountTradeType fromValue(String text)
Copyright © 2020. All rights reserved.