public enum BusinessType extends Enum<BusinessType>
| Enum Constant and Description |
|---|
BUSIFAVOR_STOCK
商家券批次
|
FAVOR_STOCK
代金券批次(暂不支持合作方为商户的场景)
|
| Modifier and Type | Method and Description |
|---|---|
static BusinessType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BusinessType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BusinessType FAVOR_STOCK
public static final BusinessType BUSIFAVOR_STOCK
public static BusinessType[] values()
for (BusinessType c : BusinessType.values()) System.out.println(c);
public static BusinessType 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.