Enum BarcodeFormat

java.lang.Object
java.lang.Enum<BarcodeFormat>
de.vwsoft.barcodelib4j.twod.zxing.BarcodeFormat
All Implemented Interfaces:
Serializable, Comparable<BarcodeFormat>

public enum BarcodeFormat extends Enum<BarcodeFormat>
Enumerates barcode formats known to this package. Please keep alphabetized.
Author:
Sean Owen
  • Enum Constant Details

    • AZTEC

      public static final BarcodeFormat AZTEC
      Aztec 2D barcode format.
    • DATA_MATRIX

      public static final BarcodeFormat DATA_MATRIX
      Data Matrix 2D barcode format.
    • PDF_417

      public static final BarcodeFormat PDF_417
      PDF417 format.
    • QR_CODE

      public static final BarcodeFormat QR_CODE
      QR Code 2D barcode format.
  • Method Details

    • values

      public static BarcodeFormat[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static BarcodeFormat valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null