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 BoundingBox
boundingBox
private Codeword[]
codewords
private static int
MAX_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) BoundingBox
getBoundingBox()
(package private) Codeword
getCodeword(int imageRow)
(package private) Codeword
getCodewordNearby(int imageRow)
(package private) Codeword[]
getCodewords()
(package private) int
imageRowToCodewordIndex(int imageRow)
(package private) void
setCodeword(int imageRow, Codeword codeword)
java.lang.String
toString()
-
-
-
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:
toString
in classjava.lang.Object
-
-