public static enum ScannerConfig.OcrAVariant extends java.lang.Enum<ScannerConfig.OcrAVariant>
Example Usage: OcrAVariant.FULL_ASCII;
| Enum Constant and Description | 
|---|
BANKING
OCR-A Banking 
 | 
FULL_ASCII
OCR-A Full ASCII 
 | 
RESERVED_1
OCR-A Reserved 1 
 | 
RESERVED_2
OCR-A Reserved 2 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static ScannerConfig.OcrAVariant | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static ScannerConfig.OcrAVariant[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ScannerConfig.OcrAVariant FULL_ASCII
public static final ScannerConfig.OcrAVariant RESERVED_1
public static final ScannerConfig.OcrAVariant RESERVED_2
public static final ScannerConfig.OcrAVariant BANKING
public static ScannerConfig.OcrAVariant[] values()
for (ScannerConfig.OcrAVariant c : ScannerConfig.OcrAVariant.values()) System.out.println(c);
public static ScannerConfig.OcrAVariant 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 null