public enum TradeBillType extends Enum<TradeBillType>
| Enum Constant and Description |
|---|
ALL
返回当日所有订单信息(不含充值退款订单)
|
REFUND
返回当日退款订单(不含充值退款订单)
|
SUCCESS
返回当日成功支付的订单(不含充值退款订单)
|
| Modifier and Type | Method and Description |
|---|---|
static TradeBillType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TradeBillType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TradeBillType ALL
public static final TradeBillType SUCCESS
public static final TradeBillType REFUND
public static TradeBillType[] values()
for (TradeBillType c : TradeBillType.values()) System.out.println(c);
public static TradeBillType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2023. All rights reserved.