X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=core%2Fsrc%2Fcom%2Fgoogle%2Fzxing%2FDecodeHintType.java;h=4b51e230fa12ab3c9c50aa4f3b7303858324d60b;hb=afc10a58143505842f5a3433ba5675d45346f0be;hp=a8e1c839bad9f01ee568d8ff1f0dfc829e44ae09;hpb=83ef405b76e46d75e285fef58a08cbe33076d6bc;p=zxing.git diff --git a/core/src/com/google/zxing/DecodeHintType.java b/core/src/com/google/zxing/DecodeHintType.java index a8e1c839..4b51e230 100644 --- a/core/src/com/google/zxing/DecodeHintType.java +++ b/core/src/com/google/zxing/DecodeHintType.java @@ -1,5 +1,5 @@ /* - * Copyright 2007 Google Inc. + * Copyright 2007 ZXing authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -21,9 +21,9 @@ package com.google.zxing; * more quickly or accurately decode it. It is up to implementations to decide what, * if anything, to do with the information that is supplied. * - * @author srowen@google.com (Sean Owen) + * @author Sean Owen * @author dswitkin@google.com (Daniel Switkin) - * @see Reader#decode(MonochromeBitmapSource, java.util.Hashtable) + * @see Reader#decode(BinaryBitmap,java.util.Hashtable) */ public final class DecodeHintType { @@ -52,6 +52,11 @@ public final class DecodeHintType { */ public static final DecodeHintType TRY_HARDER = new DecodeHintType(); + /** + * Allowed lengths of encoded data -- reject anything else. Maps to an int[]. + */ + public static final DecodeHintType ALLOWED_LENGTHS = new DecodeHintType(); + private DecodeHintType() { }