Package com.aspose.barcode.generation
Class ExtCodetextBuilder
- java.lang.Object
-
- com.aspose.barcode.generation.ExtCodetextBuilder
-
- Direct Known Subclasses:
QrExtCodetextBuilder
public abstract class ExtCodetextBuilder extends java.lang.Object
Helper class for automatic codetext generation of the Extended Codetext Mode
-
-
Constructor Summary
Constructors Constructor Description ExtCodetextBuilder()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description void
addECICodetext(int ECIEncoding, java.lang.String codetext)
Adds codetext with Extended Channel Identifiervoid
addPlainCodetext(java.lang.String codetext)
Adds plain codetext to the extended codetext itemsvoid
clear()
Clears extended codetext itemsabstract java.lang.String
getExtendedCodetext()
Generate extended codetext from generation items list
-
-
-
Method Detail
-
clear
public void clear()
Clears extended codetext items
-
addPlainCodetext
public void addPlainCodetext(java.lang.String codetext)
Adds plain codetext to the extended codetext items
- Parameters:
codetext
- Codetext in unicode to add as extended codetext item
-
addECICodetext
public void addECICodetext(int ECIEncoding, java.lang.String codetext)
Adds codetext with Extended Channel Identifier
- Parameters:
ECIEncoding
- Extended Channel Identifiercodetext
- Codetext in unicode to add as extended codetext item with Extended Channel Identifier
-
getExtendedCodetext
public abstract java.lang.String getExtendedCodetext()
Generate extended codetext from generation items list
- Returns:
- Return string of extended codetext
-
-