public static enum Codabar.CodabarMode extends java.lang.Enum<Codabar.CodabarMode>
Enum Constant and Description |
---|
ABC_CODE_ONLY
ABCコードのみを読み取ります Read only ABC code |
CODABAR_ABC_CX
標準Codabar,ABCコード,CXコード全てを読み取ります Read standard Codabar, ABC code, CX code |
CODABAR_NORMAL
標準のCodabarのみを読み取ります Read only standard Codabar |
CX_CODE_ONLY
CXコードのみを読み取ります Read only CX code |
Modifier and Type | Method and Description |
---|---|
int |
getId() |
static Codabar.CodabarMode |
valueOf(int id) |
static Codabar.CodabarMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Codabar.CodabarMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Codabar.CodabarMode CODABAR_NORMAL
public static final Codabar.CodabarMode ABC_CODE_ONLY
public static final Codabar.CodabarMode CX_CODE_ONLY
public static final Codabar.CodabarMode CODABAR_ABC_CX
public static Codabar.CodabarMode[] values()
for (Codabar.CodabarMode c : Codabar.CodabarMode.values()) System.out.println(c);
public static Codabar.CodabarMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static Codabar.CodabarMode valueOf(int id)
public int getId()