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 ECCHEIGHTIMAGE_TOO_SMALLMESSAGE_TOO_BIGNCODEWORDCOLNCODEWORDROWRESOLUTIONSYMBOL_TOO_BIGTOO_MANY_COLSTOO_MANY_ROWSUNKNOWNWIDTHXSYMHEIGHTXSYMWIDTH 
- 
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()static PDF417EncoderErrorCodevalueOf(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:
 toStringin classjava.lang.Enum<PDF417EncoderErrorCode>
 
 - 
 
 -