Enum Class Ean13Type

java.lang.Object
java.lang.Enum<Ean13Type>
com.nefrock.edgeocr.Ean13Type
All Implemented Interfaces:
Serializable, Comparable<Ean13Type>, Constable

public enum Ean13Type extends Enum<Ean13Type>
バーコード認識において、EAN-13の種類を表す列挙型。デコーダーがヒントとして使用する。
  • Enum Constant Details

    • EAN13_UPCA

      public static final Ean13Type EAN13_UPCA
      UPC-A
    • EAN13_JAN

      public static final Ean13Type EAN13_JAN
      JAN
    • EAN13_EAN13

      public static final Ean13Type EAN13_EAN13
      EAN-13
  • Method Details

    • values

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

      public static Ean13Type valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null