Trying out a new user-requested decode hint, allowing a caller to skip the first...
[zxing.git] / core / src / com / google / zxing / DecodeHintType.java
index a8e1c83..20c30c0 100644 (file)
@@ -52,6 +52,13 @@ public final class DecodeHintType {
    */
   public static final DecodeHintType TRY_HARDER = new DecodeHintType();
 
+  /**
+   * Skip the first n barcodes found. Currently applies only to 1D formats. This
+   * enables a caller to repeatedly decode and find multiple barcodes. Maps
+   * to an {@link Integer}.
+   */
+  public static final DecodeHintType SKIP_N_BARCODES = new DecodeHintType();
+
   private DecodeHintType() {
   }