Uses of Interface
com.google.zxing.common.ECIInput
Packages that use ECIInput
Package
Description
-
Uses of ECIInput in com.google.zxing.common
Classes in com.google.zxing.common that implement ECIInputModifier and TypeClassDescriptionclass
Class that converts a character string into a sequence of ECIs and bytes The implementation uses the Dijkstra algorithm to produce minimal encodings -
Uses of ECIInput in com.google.zxing.datamatrix.encoder
Classes in com.google.zxing.datamatrix.encoder that implement ECIInput -
Uses of ECIInput in com.google.zxing.pdf417.encoder
Classes in com.google.zxing.pdf417.encoder that implement ECIInputMethods in com.google.zxing.pdf417.encoder with parameters of type ECIInputModifier and TypeMethodDescriptionprivate static int
PDF417HighLevelEncoder.determineConsecutiveBinaryCount
(ECIInput input, int startpos, Charset encoding) Determines the number of consecutive characters that are encodable using binary compaction.private static int
PDF417HighLevelEncoder.determineConsecutiveDigitCount
(ECIInput input, int startpos) Determines the number of consecutive characters that are encodable using numeric compaction.private static int
PDF417HighLevelEncoder.determineConsecutiveTextCount
(ECIInput input, int startpos) Determines the number of consecutive characters that are encodable using text compaction.private static void
PDF417HighLevelEncoder.encodeMultiECIBinary
(ECIInput input, int startpos, int count, int startmode, StringBuilder sb) Encode all of the message using Byte Compaction as described in ISO/IEC 15438:2001(E)private static void
PDF417HighLevelEncoder.encodeNumeric
(ECIInput input, int startpos, int count, StringBuilder sb) private static int
PDF417HighLevelEncoder.encodeText
(ECIInput input, int startpos, int count, StringBuilder sb, int initialSubmode) Encode parts of the message using Text Compaction as described in ISO/IEC 15438:2001(E), chapter 4.4.2.(package private) static byte[]