Package com.ironsoftware.ironpdf.stamp
Enum BarcodeEncoding
- All Implemented Interfaces:
Serializable
,Comparable<BarcodeEncoding>
,java.lang.constant.Constable
Barcode Encoding Types. Please check the supported characters for each encoding type as some do
not support all symbols.
See: BarcodeStamper
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic BarcodeEncoding
Returns the enum constant of this type with the specified name.static BarcodeEncoding[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
Code128
Code 128 (1D barcode format). Code 128 is a high-density linear barcode symbology defined in ISO/IEC 15417:2007. Supported characters include: All alphabetic and numeric characters. -
Code39
Code 39 (1D barcode format). Code 39 is a variable length, discrete barcode symbology. The Code 39 specification defines 43 characters. Supported characters include: Digits from (0-9), Uppercase (A through Z), and these symbols: (-.$/+% space) -
QRCode
QR Code (2D barcode format). QR code (abbreviated from Quick Response Code) is a machine-readable optical label that contains information about the item to which it is attached. A QR code uses four standardized encoding modes to efficiently store data. Supported characters include: All numeric, alphanumeric, byte/binary, and Japanese kanji.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-