//scanning/com.pixelnetica.scanning/ScanText/Flag

Flag

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

Flags to generate String

Entries

   
APPEND_LOCALE [androidJvm]
APPEND_LOCALE
Append standard android android.text.style.StyleSpan
APPEND_TYPEFACE [androidJvm]
APPEND_TYPEFACE
Append font name if it was recognized
APPEND_FONT_SIZE [androidJvm]
APPEND_FONT_SIZE
Append font size if it was recognized
APPEND_FONT_SIZE_DIP [androidJvm]
APPEND_FONT_SIZE_DIP
Append font size in DIP
APPEND_STYLE [androidJvm]
APPEND_STYLE
Append text style such as bold, italic, etc
APPEND_UNCERTAIN [androidJvm]
APPEND_UNCERTAIN
Append color span for uncertain symbols.

Properties

Name Summary
entries [androidJvm]
val entries: EnumEntries<ScanText.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: ScanText.Flag): EnumSet<ScanText.Flag>
valueOf [androidJvm]
fun valueOf(value: String): ScanText.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<ScanText.Flag>
Returns an array containing the constants of this enum type, in the order they’re declared.
Top