Committed C# port from Mohamad
[zxing.git] / csharp / DecodeHintType.cs
1 /*\r
2 * Copyright 2008 ZXing authors\r
3 *\r
4 * Licensed under the Apache License, Version 2.0 (the "License");\r
5 * you may not use this file except in compliance with the License.\r
6 * You may obtain a copy of the License at\r
7 *\r
8 *      http://www.apache.org/licenses/LICENSE-2.0\r
9 *\r
10 * Unless required by applicable law or agreed to in writing, software\r
11 * distributed under the License is distributed on an "AS IS" BASIS,\r
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
13 * See the License for the specific language governing permissions and\r
14 * limitations under the License.\r
15 */\r
16 namespace com.google.zxing\r
17 {\r
18     using System;\r
19     using System.Text;\r
20 \r
21     /// <summary> A class which wraps a 2D array of bytes. The default usage is signed. If you want to use it as a\r
22     /// unsigned container, it's up to you to do byteValue & 0xff at each location.\r
23     /// *\r
24     /// JAVAPORT: I'm not happy about the argument ordering throughout the file, as I always like to have\r
25     /// the horizontal component first, but this is for compatibility with the C++ code. The original\r
26     /// code was a 2D array of ints, but since it only ever gets assigned -1, 0, and 1, I'm going to use\r
27     /// less memory and go with bytes.\r
28     /// *\r
29     /// </summary>\r
30     /// <author>  dswitkin@google.com (Daniel Switkin)\r
31     /// \r
32     /// </author>\r
33     public sealed class DecodeHintType\r
34     { \r
35           // No, we can't use an enum here. J2ME doesn't support it.\r
36           /**\r
37            * Unspecified, application-specific hint. Maps to an unspecified {@link Object}.\r
38            */\r
39           public static DecodeHintType OTHER = new DecodeHintType();\r
40 \r
41           /**\r
42            * Image is a pure monochrome image of a barcode. Doesn't matter what it maps to;\r
43            * use {@link Boolean#TRUE}.\r
44            */\r
45           public static DecodeHintType PURE_BARCODE = new DecodeHintType();\r
46 \r
47           /**\r
48            * Image is known to be of one of a few possible formats.\r
49            * Maps to a {@link java.util.Vector} of {@link BarcodeFormat}s.\r
50            */\r
51           public static DecodeHintType POSSIBLE_FORMATS = new DecodeHintType();\r
52 \r
53           /**\r
54            * Spend more time to try to find a barcode; optimize for accuracy, not speed.\r
55            * Doesn't matter what it maps to; use {@link Boolean#TRUE}.\r
56            */\r
57           public static DecodeHintType TRY_HARDER = new DecodeHintType();\r
58 \r
59           private DecodeHintType() {\r
60           }\r
61     \r
62     }\r
63 }