Feature Enumeration

enum Feature : Enum<ScanningSdkLibrary.Feature>

The separately licensed capabilities of the SDK, for checking what your key actually covers.

Pass the ones your application needs to isLicenceValid; a key may cover any combination.

Entries

PNG

PNG

Writing PNG output through ImageWriterPng.

TIFF

TIFF

Writing TIFF output through ImageWriterTiff.

PDF

PDF

Writing PDF output through ImageWriterPdf.

OCR

OCR

Recognising text through ScanReader.

Types

Companion

object Companion

Ready-made feature sets, and conversion from a collection.

Properties

entries

val entries: EnumEntries<ScanningSdkLibrary.Feature>

Returns a representation of an immutable list of all enum entries, in the order they’re declared.

name

val name: String

ordinal

val ordinal: Int

Functions

valueOf

fun valueOf(value: String): ScanningSdkLibrary.Feature

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

fun values(): Array<ScanningSdkLibrary.Feature>

Returns an array containing the constants of this enum type, in the order they’re declared.

Top