public enum SubsidyFailReason extends Enum<SubsidyFailReason>
| Enum Constant and Description |
|---|
EXCEED_SUBSIDY_AMOUNT_QUOTA
超出订单补差总额限制
|
EXCEED_SUBSIDY_COUNT_QUOTA
超出订单补差总数限制
|
INSUFFICIENT_BALANCE
扣款商户余额不足
|
NOT_INCOMESPLIT_ORDER
非分账订单
|
OTHER
其他原因
|
| Modifier and Type | Method and Description |
|---|---|
static SubsidyFailReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SubsidyFailReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubsidyFailReason INSUFFICIENT_BALANCE
public static final SubsidyFailReason NOT_INCOMESPLIT_ORDER
public static final SubsidyFailReason EXCEED_SUBSIDY_AMOUNT_QUOTA
public static final SubsidyFailReason EXCEED_SUBSIDY_COUNT_QUOTA
public static final SubsidyFailReason OTHER
public static SubsidyFailReason[] values()
for (SubsidyFailReason c : SubsidyFailReason.values()) System.out.println(c);
public static SubsidyFailReason 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.