2b04dd6548673ff1c73127bc4e17174f9d032dcd
[platform/core/csapi/tizenfx.git] / src / Tizen.Multimedia / MediaVision / BarcodeType.cs
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 namespace Tizen.Multimedia
18 {
19     /// <summary>
20     /// Enumeration for supported barcode types.
21     /// </summary>
22     /// <remarks>
23     /// QR codes (versions 1 to 40) and set of 1D barcodes are supported
24     /// </remarks>
25     public enum BarcodeType
26     {
27         /// <summary>
28         /// 2D barcode - Quick Response code
29         /// </summary>
30         QR,
31         /// <summary>
32         /// 1D barcode - Universal Product Code with 12-digit
33         /// </summary>
34         UPC_A,
35         /// <summary>
36         /// 1D barcode - Universal Product Code with 6-digit
37         /// </summary>
38         UPC_E,
39         /// <summary>
40         /// 1D barcode - International Article Number with 8-digit
41         /// </summary>
42         EAN_8,
43         /// <summary>
44         /// 1D barcode - International Article Number with 13-digit
45         /// </summary>
46         EAN_13,
47         /// <summary>
48         /// 1D barcode - Code 128
49         /// </summary>
50         CODE128,
51         /// <summary>
52         /// 1D barcode - Code 39
53         /// </summary>
54         CODE39,
55         /// <summary>
56         /// 1D barcode - Interleaved Two of Five
57         /// </summary>
58         I2_5,
59         /// <summary>
60         /// Undefined
61         /// </summary>
62         Undefined
63     }
64 }