public enum CodeDisplayMode extends java.lang.Enum<CodeDisplayMode>
| Modifier and Type | Method and Description |
|---|---|
static CodeDisplayMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CodeDisplayMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="NOT_SHOW") public static final CodeDisplayMode NOT_SHOW
@SerializedName(value="BARCODE") public static final CodeDisplayMode BARCODE
@SerializedName(value="QRCODE") public static final CodeDisplayMode QRCODE
public static CodeDisplayMode[] values()
for (CodeDisplayMode c : CodeDisplayMode.values()) System.out.println(c);
public static CodeDisplayMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null