Enum DCSSDKDefs.DCSSDK_CONN_TYPES

    • Enum Constant Detail

      • DCSSDK_CONNTYPE_INVALID

        public static final DCSSDKDefs.DCSSDK_CONN_TYPES DCSSDK_CONNTYPE_INVALID
        The SDK is unable to determine communication mode of a particular scanner.
      • DCSSDK_CONNTYPE_BT_NORMAL

        public static final DCSSDKDefs.DCSSDK_CONN_TYPES DCSSDK_CONNTYPE_BT_NORMAL
        A particular scanner is in normal BT mode.
      • DCSSDK_CONNTYPE_USB_SNAPI

        public static final DCSSDKDefs.DCSSDK_CONN_TYPES DCSSDK_CONNTYPE_USB_SNAPI
        A particular scanner is in USB SNAPI mode.
      • DCSSDK_CONNTYPE_USB_CDC

        public static final DCSSDKDefs.DCSSDK_CONN_TYPES DCSSDK_CONNTYPE_USB_CDC
        A particular scanner is in USB CDC mode.
    • Field Detail

      • value

        public int value
    • Method Detail

      • values

        public static DCSSDKDefs.DCSSDK_CONN_TYPES[] 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_CONN_TYPES c : DCSSDKDefs.DCSSDK_CONN_TYPES.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_CONN_TYPES 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 name
        java.lang.NullPointerException - if the argument is null