CharactersAllowedType

Inheritance: java.lang.Object, java.lang.Enum

public enum CharactersAllowedType extends Enum<CharactersAllowedType>

Determines the type of characters allowed for recognition result. Used in the @see RecognitionSettings#RecognitionSettings to indicate which characters will be recognized.

Fields

FieldDescription
ALLRecognize all characters.
DIGITSRecognize only if character is hexadecimal digit.
LATIN_ALPHABETRecognize only if character is an latin alphabetic letter.

ALL

public static final CharactersAllowedType ALL

Recognize all characters.

DIGITS

public static final CharactersAllowedType DIGITS

Recognize only if character is hexadecimal digit.

LATIN_ALPHABET

public static final CharactersAllowedType LATIN_ALPHABET

Recognize only if character is an latin alphabetic letter.