public static enum VersionManager.VERSION_TYPE extends java.lang.Enum<VersionManager.VERSION_TYPE>
VersionManager.getVersion(VERSION_TYPE) are enumerated here.
Example Usage: VERSION_TYPE.EMDK
| Enum Constant and Description |
|---|
BARCODE
Barcode Scanner Framework version.
|
EMDK
EMDK version
|
MX
MX framework version
|
| Modifier and Type | Method and Description |
|---|---|
static VersionManager.VERSION_TYPE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VersionManager.VERSION_TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VersionManager.VERSION_TYPE EMDK
public static final VersionManager.VERSION_TYPE MX
public static final VersionManager.VERSION_TYPE BARCODE
public static VersionManager.VERSION_TYPE[] values()
for (VersionManager.VERSION_TYPE c : VersionManager.VERSION_TYPE.values()) System.out.println(c);
public static VersionManager.VERSION_TYPE 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