Package com.zebra.scannercontrol
Enum DCSSDKDefs.DCSSDK_MODE
- java.lang.Object
-
- java.lang.Enum<DCSSDKDefs.DCSSDK_MODE>
-
- com.zebra.scannercontrol.DCSSDKDefs.DCSSDK_MODE
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DCSSDKDefs.DCSSDK_MODE>
- Enclosing class:
- DCSSDKDefs
public static enum DCSSDKDefs.DCSSDK_MODE extends java.lang.Enum<DCSSDKDefs.DCSSDK_MODE>
These constants are defined to represent operating modes of Motorola Bluetooth Scanner Android SDK.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DCSSDK_OPMODE_BT_LE
The SDK is able to communicate BT LE scanners.DCSSDK_OPMODE_BT_NORMAL
The SDK is able to communicate Bluetooth scanners.DCSSDK_OPMODE_DISABLED
The SDK is not able to communicate with scanners.DCSSDK_OPMODE_SNAPI
The SDK is able to communicate USB SNAPI scanners.DCSSDK_OPMODE_USB_CDC
The SDK is able to communicate USB CDC scanners.
-
Field Summary
Fields Modifier and Type Field Description int
value
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DCSSDKDefs.DCSSDK_MODE
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DCSSDKDefs.DCSSDK_MODE[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DCSSDK_OPMODE_DISABLED
public static final DCSSDKDefs.DCSSDK_MODE DCSSDK_OPMODE_DISABLED
The SDK is not able to communicate with scanners.
-
DCSSDK_OPMODE_BT_NORMAL
public static final DCSSDKDefs.DCSSDK_MODE DCSSDK_OPMODE_BT_NORMAL
The SDK is able to communicate Bluetooth scanners.
-
DCSSDK_OPMODE_SNAPI
public static final DCSSDKDefs.DCSSDK_MODE DCSSDK_OPMODE_SNAPI
The SDK is able to communicate USB SNAPI scanners.
-
DCSSDK_OPMODE_BT_LE
public static final DCSSDKDefs.DCSSDK_MODE DCSSDK_OPMODE_BT_LE
The SDK is able to communicate BT LE scanners.
-
DCSSDK_OPMODE_USB_CDC
public static final DCSSDKDefs.DCSSDK_MODE DCSSDK_OPMODE_USB_CDC
The SDK is able to communicate USB CDC scanners.
-
-
Method Detail
-
values
public static DCSSDKDefs.DCSSDK_MODE[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DCSSDKDefs.DCSSDK_MODE c : DCSSDKDefs.DCSSDK_MODE.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DCSSDKDefs.DCSSDK_MODE valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-