public static enum PaymentApi.BillType extends Enum<PaymentApi.BillType>
ALL,返回当日所有订单信息,默认值 SUCCESS,返回当日成功支付的订单 REFUND,返回当日退款订单 REVOKED,已撤销的订单
public static final PaymentApi.BillType ALL
public static final PaymentApi.BillType SUCCESS
public static final PaymentApi.BillType REFUND
public static final PaymentApi.BillType REVOKED
public static PaymentApi.BillType[] values()
for (PaymentApi.BillType c : PaymentApi.BillType.values()) System.out.println(c);
public static PaymentApi.BillType valueOf(String name)
name
- 要返回的枚举常量的名称。IllegalArgumentException
- 如果该枚举类型没有带有指定名称的常量NullPointerException
- 如果参数为空值Copyright © 2017. All rights reserved.