Package com.google.zxing.aztec
Class AztecDetectorResult
- java.lang.Object
-
- com.google.zxing.common.DetectorResult
-
- com.google.zxing.aztec.AztecDetectorResult
-
public final class AztecDetectorResult extends DetectorResult
Extends
DetectorResult
with more information specific to the Aztec format, like the number of layers and whether it's compact.
-
-
Field Summary
Fields Modifier and Type Field Description private boolean
compact
private int
errorsCorrected
private int
nbDatablocks
private int
nbLayers
-
Constructor Summary
Constructors Constructor Description AztecDetectorResult(BitMatrix bits, ResultPoint[] points, boolean compact, int nbDatablocks, int nbLayers)
AztecDetectorResult(BitMatrix bits, ResultPoint[] points, boolean compact, int nbDatablocks, int nbLayers, int errorsCorrected)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getErrorsCorrected()
int
getNbDatablocks()
int
getNbLayers()
boolean
isCompact()
-
Methods inherited from class com.google.zxing.common.DetectorResult
getBits, getPoints
-
-
-
-
Constructor Detail
-
AztecDetectorResult
public AztecDetectorResult(BitMatrix bits, ResultPoint[] points, boolean compact, int nbDatablocks, int nbLayers)
-
AztecDetectorResult
public AztecDetectorResult(BitMatrix bits, ResultPoint[] points, boolean compact, int nbDatablocks, int nbLayers, int errorsCorrected)
-
-