public enum ResultType extends Enum<ResultType>
Enum Constant and Description |
---|
CODE_QUALITY_DATA
Represents code quality information in XML format.
|
IMAGE
Represents a read image.
|
IMAGE_GRAPHICS
Represents an image graphics XML.
|
NONE
No result of any kind are requested from the reader.
|
READ_STRING
Represents a simple read result string.
|
READ_XML
Represents a read result in XML format.
|
TRAINING_RESULTS
Represents training results in XML format.
|
XML_CONTENT
Represents code content information in xml format.
|
XML_STATISTICS
Represents read statistics in XML format.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue()
Gets the integer value of the current
ResultType object. |
static ResultType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResultType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResultType NONE
public static final ResultType READ_STRING
public static final ResultType READ_XML
public static final ResultType XML_STATISTICS
public static final ResultType IMAGE
public static final ResultType IMAGE_GRAPHICS
public static final ResultType TRAINING_RESULTS
public static final ResultType CODE_QUALITY_DATA
public static final ResultType XML_CONTENT
public static ResultType[] values()
for (ResultType c : ResultType.values()) System.out.println(c);
public static ResultType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic int getValue()
ResultType
object.ResultType
object.