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.
LATIN_ALPHABETRecognize only if character is an latin alphabetic letter.
DIGITSRecognize only if character is hexadecimal digit.

Methods

MethodDescription
values()
valueOf(String name)

ALL

public static final CharactersAllowedType ALL

Recognize all characters.

LATIN_ALPHABET

public static final CharactersAllowedType LATIN_ALPHABET

Recognize only if character is an latin alphabetic letter.

DIGITS

public static final CharactersAllowedType DIGITS

Recognize only if character is hexadecimal digit.

values()

public static CharactersAllowedType[] values()

Returns: com.aspose.ocr.CharactersAllowedType[]

valueOf(String name)

public static CharactersAllowedType valueOf(String name)

Parameters:

ParameterTypeDescription
namejava.lang.String

Returns: CharactersAllowedType