//scanning/com.pixelnetica.scanning/ScanReader/Flag

Flag

[androidJvm]
enum Flag : Enum<ScanReader.Flag>

Flags for recognize

Entries

   
NONE [androidJvm]
NONE
NL_AFTER_TEXT_BLOCKS [androidJvm]
NL_AFTER_TEXT_BLOCKS
Append "\n" after each text block
NL_AFTER_PARAGRAPHS [androidJvm]
NL_AFTER_PARAGRAPHS
Append "\n" after each paragraph
NL_AFTER_TEXT_LINES [androidJvm]
NL_AFTER_TEXT_LINES
Append "\n" after each pageText line
SP_BETWEEN_WORDS [androidJvm]
SP_BETWEEN_WORDS
Append space between words
SYMBOL_CONFIDENCE [androidJvm]
SYMBOL_CONFIDENCE
Append symbol confidence value

Properties

Name Summary
entries [androidJvm]
val entries: EnumEntries<ScanReader.Flag>
Returns a representation of an immutable list of all enum entries, in the order they’re declared.

Functions

Name Summary
or [androidJvm]
infix fun or(other: ScanReader.Flag): EnumSet<ScanReader.Flag>
valueOf [androidJvm]
fun valueOf(value: String): ScanReader.Flag
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
values [androidJvm]
fun values(): Array<ScanReader.Flag>
Returns an array containing the constants of this enum type, in the order they’re declared.
Top