Package com.aspose.barcode.generation
Enum PatchFormat
- java.lang.Object
-
- java.lang.Enum<PatchFormat>
-
- com.aspose.barcode.generation.PatchFormat
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PatchFormat>
public enum PatchFormat extends java.lang.Enum<PatchFormat>
PatchCode format. Choose PatchOnly to generate single PatchCode. Use page format to generate Patch page with PatchCodes as borders
-
-
Enum Constant Summary
Enum Constants Enum Constant Description A4
Generates A4 format page with PatchCodes as borders and optional QR in the centerA4_LANDSCAPE
Generates A4 landscape format page with PatchCodes as borders and optional QR in the centerPATCH_ONLY
Generates PatchCode onlyUS_LETTER
Generates US letter format page with PatchCodes as borders and optional QR in the centerUS_LETTER_LANDSCAPE
Generates US letter landscape format page with PatchCodes as borders and optional QR in the center
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PatchFormat
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PatchFormat[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PATCH_ONLY
public static final PatchFormat PATCH_ONLY
Generates PatchCode only
-
A4
public static final PatchFormat A4
Generates A4 format page with PatchCodes as borders and optional QR in the center
-
A4_LANDSCAPE
public static final PatchFormat A4_LANDSCAPE
Generates A4 landscape format page with PatchCodes as borders and optional QR in the center
-
US_LETTER
public static final PatchFormat US_LETTER
Generates US letter format page with PatchCodes as borders and optional QR in the center
-
US_LETTER_LANDSCAPE
public static final PatchFormat US_LETTER_LANDSCAPE
Generates US letter landscape format page with PatchCodes as borders and optional QR in the center
-
-
Method Detail
-
values
public static PatchFormat[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PatchFormat c : PatchFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PatchFormat valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-