public enum BusiFavorCodeDisplayMode extends Enum<BusiFavorCodeDisplayMode>
| Enum Constant and Description |
|---|
BARCODE
一维码(条形码)
|
NOT_SHOW
不展示code
|
QRCODE
二维码
|
| Modifier and Type | Method and Description |
|---|---|
static BusiFavorCodeDisplayMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BusiFavorCodeDisplayMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BusiFavorCodeDisplayMode NOT_SHOW
public static final BusiFavorCodeDisplayMode BARCODE
public static final BusiFavorCodeDisplayMode QRCODE
public static BusiFavorCodeDisplayMode[] values()
for (BusiFavorCodeDisplayMode c : BusiFavorCodeDisplayMode.values()) System.out.println(c);
public static BusiFavorCodeDisplayMode 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.