Package com.google.zxing.pdf417.decoder
Class DetectionResultColumn
- java.lang.Object
-
- com.google.zxing.pdf417.decoder.DetectionResultColumn
-
- Direct Known Subclasses:
DetectionResultRowIndicatorColumn
class DetectionResultColumn extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description private BoundingBoxboundingBoxprivate Codeword[]codewordsprivate static intMAX_NEARBY_DISTANCE
-
Constructor Summary
Constructors Constructor Description DetectionResultColumn(BoundingBox boundingBox)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) BoundingBoxgetBoundingBox()(package private) CodewordgetCodeword(int imageRow)(package private) CodewordgetCodewordNearby(int imageRow)(package private) Codeword[]getCodewords()(package private) intimageRowToCodewordIndex(int imageRow)(package private) voidsetCodeword(int imageRow, Codeword codeword)java.lang.StringtoString()
-
-
-
Field Detail
-
MAX_NEARBY_DISTANCE
private static final int MAX_NEARBY_DISTANCE
- See Also:
- Constant Field Values
-
boundingBox
private final BoundingBox boundingBox
-
codewords
private final Codeword[] codewords
-
-
Constructor Detail
-
DetectionResultColumn
DetectionResultColumn(BoundingBox boundingBox)
-
-
Method Detail
-
getCodewordNearby
final Codeword getCodewordNearby(int imageRow)
-
imageRowToCodewordIndex
final int imageRowToCodewordIndex(int imageRow)
-
setCodeword
final void setCodeword(int imageRow, Codeword codeword)
-
getCodeword
final Codeword getCodeword(int imageRow)
-
getBoundingBox
final BoundingBox getBoundingBox()
-
getCodewords
final Codeword[] getCodewords()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-