@Generated(value="software.amazon.awssdk:codegen") public enum DocumentReadFeatureTypes extends Enum<DocumentReadFeatureTypes>
Specifies the type of Amazon Textract features to apply. If you chose TEXTRACT_ANALYZE_DOCUMENT as the
read action, you must specify one or both of the following values:
TABLES - Returns additional information about any tables that are detected in the input document.
FORMS - Returns additional information about any forms that are detected in the input document.
| Enum Constant and Description |
|---|
FORMS |
TABLES |
UNKNOWN_TO_SDK_VERSION |
| Modifier and Type | Method and Description |
|---|---|
static DocumentReadFeatureTypes |
fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.
|
static Set<DocumentReadFeatureTypes> |
knownValues()
|
String |
toString() |
static DocumentReadFeatureTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocumentReadFeatureTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentReadFeatureTypes TABLES
public static final DocumentReadFeatureTypes FORMS
public static final DocumentReadFeatureTypes UNKNOWN_TO_SDK_VERSION
public static DocumentReadFeatureTypes[] values()
for (DocumentReadFeatureTypes c : DocumentReadFeatureTypes.values()) System.out.println(c);
public static DocumentReadFeatureTypes valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<DocumentReadFeatureTypes>public static DocumentReadFeatureTypes fromValue(String value)
value - real valuepublic static Set<DocumentReadFeatureTypes> knownValues()
values() to return a Set of all values known to the SDK. This will return
all known enum values except UNKNOWN_TO_SDK_VERSION.Set of known DocumentReadFeatureTypessCopyright © 2023. All rights reserved.