Uses of Class
com.google.zxing.common.ECIStringBuilder
-
Packages that use ECIStringBuilder Package Description com.google.zxing.datamatrix.decoder com.google.zxing.pdf417.decoder -
-
Uses of ECIStringBuilder in com.google.zxing.datamatrix.decoder
Methods in com.google.zxing.datamatrix.decoder with parameters of type ECIStringBuilder Modifier and Type Method Description private static void
DecodedBitStreamParser. decodeAnsiX12Segment(BitSource bits, ECIStringBuilder result)
See ISO 16022:2006, 5.2.7private static DecodedBitStreamParser.Mode
DecodedBitStreamParser. decodeAsciiSegment(BitSource bits, ECIStringBuilder result, java.lang.StringBuilder resultTrailer, java.util.Set<java.lang.Integer> fnc1positions)
See ISO 16022:2006, 5.2.3 and Annex C, Table C.2private static void
DecodedBitStreamParser. decodeBase256Segment(BitSource bits, ECIStringBuilder result, java.util.Collection<byte[]> byteSegments)
See ISO 16022:2006, 5.2.9 and Annex B, B.2private static void
DecodedBitStreamParser. decodeC40Segment(BitSource bits, ECIStringBuilder result, java.util.Set<java.lang.Integer> fnc1positions)
See ISO 16022:2006, 5.2.5 and Annex C, Table C.1private static void
DecodedBitStreamParser. decodeECISegment(BitSource bits, ECIStringBuilder result)
See ISO 16022:2007, 5.4.1private static void
DecodedBitStreamParser. decodeEdifactSegment(BitSource bits, ECIStringBuilder result)
See ISO 16022:2006, 5.2.8 and Annex C Table C.3private static void
DecodedBitStreamParser. decodeTextSegment(BitSource bits, ECIStringBuilder result, java.util.Set<java.lang.Integer> fnc1positions)
See ISO 16022:2006, 5.2.6 and Annex C, Table C.2 -
Uses of ECIStringBuilder in com.google.zxing.pdf417.decoder
Methods in com.google.zxing.pdf417.decoder with parameters of type ECIStringBuilder Modifier and Type Method Description private static int
DecodedBitStreamParser. byteCompaction(int mode, int[] codewords, int codeIndex, ECIStringBuilder result)
Byte Compaction mode (see 5.4.3) permits all 256 possible 8-bit byte values to be encoded.private static DecodedBitStreamParser.Mode
DecodedBitStreamParser. decodeTextCompaction(int[] textCompactionData, int[] byteCompactionData, int length, ECIStringBuilder result, DecodedBitStreamParser.Mode startMode)
The Text Compaction mode includes all the printable ASCII characters (i.e.private static int
DecodedBitStreamParser. numericCompaction(int[] codewords, int codeIndex, ECIStringBuilder result)
Numeric Compaction mode (see 5.4.4) permits efficient encoding of numeric data strings.private static int
DecodedBitStreamParser. textCompaction(int[] codewords, int codeIndex, ECIStringBuilder result)
Text Compaction mode (see 5.4.1.5) permits all printable ASCII characters to be encoded, i.e.
-