Package com.adobe.xfa.pmp.adobepdf417pmp
Enum PDF417EncoderErrorCode
- java.lang.Object
-
- java.lang.Enum<PDF417EncoderErrorCode>
-
- com.adobe.xfa.pmp.adobepdf417pmp.PDF417EncoderErrorCode
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PDF417EncoderErrorCode>
public enum PDF417EncoderErrorCode extends java.lang.Enum<PDF417EncoderErrorCode>
PDF417 Error codes
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ECC
HEIGHT
IMAGE_TOO_SMALL
MESSAGE_TOO_BIG
NCODEWORDCOL
NCODEWORDROW
RESOLUTION
SYMBOL_TOO_BIG
TOO_MANY_COLS
TOO_MANY_ROWS
UNKNOWN
WIDTH
XSYMHEIGHT
XSYMWIDTH
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
static PDF417EncoderErrorCode
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PDF417EncoderErrorCode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final PDF417EncoderErrorCode UNKNOWN
-
MESSAGE_TOO_BIG
public static final PDF417EncoderErrorCode MESSAGE_TOO_BIG
-
IMAGE_TOO_SMALL
public static final PDF417EncoderErrorCode IMAGE_TOO_SMALL
-
TOO_MANY_ROWS
public static final PDF417EncoderErrorCode TOO_MANY_ROWS
-
TOO_MANY_COLS
public static final PDF417EncoderErrorCode TOO_MANY_COLS
-
SYMBOL_TOO_BIG
public static final PDF417EncoderErrorCode SYMBOL_TOO_BIG
-
RESOLUTION
public static final PDF417EncoderErrorCode RESOLUTION
-
ECC
public static final PDF417EncoderErrorCode ECC
-
WIDTH
public static final PDF417EncoderErrorCode WIDTH
-
HEIGHT
public static final PDF417EncoderErrorCode HEIGHT
-
XSYMWIDTH
public static final PDF417EncoderErrorCode XSYMWIDTH
-
XSYMHEIGHT
public static final PDF417EncoderErrorCode XSYMHEIGHT
-
NCODEWORDROW
public static final PDF417EncoderErrorCode NCODEWORDROW
-
NCODEWORDCOL
public static final PDF417EncoderErrorCode NCODEWORDCOL
-
-
Method Detail
-
values
public static PDF417EncoderErrorCode[] 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 (PDF417EncoderErrorCode c : PDF417EncoderErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PDF417EncoderErrorCode 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
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<PDF417EncoderErrorCode>
-
-