Package com.aspose.barcode.generation
Enum Class PatchFormat
- All Implemented Interfaces:
Serializable,Comparable<PatchFormat>,Constable
PatchCode format. Choose PatchOnly to generate single PatchCode. Use page format to generate Patch page with PatchCodes as borders
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionGenerates A4 format page with PatchCodes as borders and optional QR in the centerGenerates A4 landscape format page with PatchCodes as borders and optional QR in the centerGenerates PatchCode onlyGenerates US letter format page with PatchCodes as borders and optional QR in the centerGenerates US letter landscape format page with PatchCodes as borders and optional QR in the center -
Method Summary
Modifier and TypeMethodDescriptionstatic PatchFormatReturns the enum constant of this class with the specified name.static PatchFormat[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PATCH_ONLY
Generates PatchCode only -
A4
Generates A4 format page with PatchCodes as borders and optional QR in the center -
A4_LANDSCAPE
Generates A4 landscape format page with PatchCodes as borders and optional QR in the center -
US_LETTER
Generates US letter format page with PatchCodes as borders and optional QR in the center -
US_LETTER_LANDSCAPE
Generates US letter landscape format page with PatchCodes as borders and optional QR in the center
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-