//scanning/com.pixelnetica.scanning/FlashMode

FlashMode

[androidJvm]
enum FlashMode : Enum<FlashMode>

Specify camera flash mode

Entries

   
UNDEFINED [androidJvm]
UNDEFINED
Unknown flash state
NOT_FIRED [androidJvm]
NOT_FIRED
Flash was not fired
FIRED [androidJvm]
FIRED
Flash was fired

Properties

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

Functions

Name Summary
toInt [androidJvm]
fun toInt(): Int
Convert to kotlin.Int
valueOf [androidJvm]
fun valueOf(value: String): FlashMode
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<FlashMode>
Returns an array containing the constants of this enum type, in the order they’re declared.
Top