Issue 331
[zxing.git] / core / src / com / google / zxing / DecodeHintType.java
index 21a4de0..20b922c 100644 (file)
@@ -52,6 +52,11 @@ public final class DecodeHintType {
    */
   public static final DecodeHintType TRY_HARDER = new DecodeHintType();
 
+  /**
+   * Specifies what character encoding to use when decoding, where applicable (type String)
+   */
+  public static final DecodeHintType CHARACTER_SET = new DecodeHintType();
+
   /**
    * Allowed lengths of encoded data -- reject anything else. Maps to an int[].
    */
@@ -62,6 +67,12 @@ public final class DecodeHintType {
    */
   public static final DecodeHintType ASSUME_CODE_39_CHECK_DIGIT = new DecodeHintType();
 
+  /**
+   * The caller needs to be notified via callback when a possible {@link ResultPoint}
+   * is found. Maps to a {@link ResultPointCallback}.
+   */
+  public static final DecodeHintType NEED_RESULT_POINT_CALLBACK = new DecodeHintType();
+
   private DecodeHintType() {
   }