XFA4J

com.adobe.xfa.pmp.common
Enum BarcodeType

java.lang.Object
  extended by java.lang.Enum<BarcodeType>
      extended by com.adobe.xfa.pmp.common.BarcodeType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<BarcodeType>

public enum BarcodeType
extends java.lang.Enum<BarcodeType>

Represents various barcode types. (Currently Supported: PDF417, DataMatrix, QRCode)


Enum Constant Summary
DataMatrix
           
PDF417
           
QRCode
           
 
Method Summary
static BarcodeType getInstance(java.lang.String type)
          Gets an instance of BarcodeType corresponding to the type supplied
 java.lang.String toString()
           
static BarcodeType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static BarcodeType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

PDF417

public static final BarcodeType PDF417

QRCode

public static final BarcodeType QRCode

DataMatrix

public static final BarcodeType DataMatrix
Method Detail

values

public static BarcodeType[] 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 (BarcodeType c : BarcodeType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static BarcodeType 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 name
java.lang.NullPointerException - if the argument is null

getInstance

public static BarcodeType getInstance(java.lang.String type)
Gets an instance of BarcodeType corresponding to the type supplied

Parameters:
type - barcode type
Returns:
BarcodeType instance

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<BarcodeType>

XFA4J

© 2005 Adobe Systems Incorporated. All Rights Reserved.