public static enum ScannerConfig.OcrOrientation extends java.lang.Enum<ScannerConfig.OcrOrientation>
Example Usage: OcrOrientation.DEGREE_0;
Enum Constant and Description |
---|
DEGREE_0
0 degree Clockwise to imaging engine
|
DEGREE_180
180 degree Clockwise to imaging engine
|
DEGREE_270
270 degree Clockwise to imaging engine
|
DEGREE_90
90 degree Clockwise to imaging engine
|
OMNIDIRECTIONAL
Omnidirectional
|
Modifier and Type | Method and Description |
---|---|
static ScannerConfig.OcrOrientation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScannerConfig.OcrOrientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScannerConfig.OcrOrientation DEGREE_0
public static final ScannerConfig.OcrOrientation DEGREE_270
public static final ScannerConfig.OcrOrientation DEGREE_180
public static final ScannerConfig.OcrOrientation DEGREE_90
public static final ScannerConfig.OcrOrientation OMNIDIRECTIONAL
public static ScannerConfig.OcrOrientation[] values()
for (ScannerConfig.OcrOrientation c : ScannerConfig.OcrOrientation.values()) System.out.println(c);
public static ScannerConfig.OcrOrientation 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