public enum DocumentSourceKind extends Enum<DocumentSourceKind>
| Enum Constant and Description |
|---|
ExtractedData
The document source of previously extracted data.
|
File
The file document source.
|
Stream
The stream document source.
|
Structure
The structure document source.
|
| Modifier and Type | Method and Description |
|---|---|
static DocumentSourceKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocumentSourceKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentSourceKind ExtractedData
public static final DocumentSourceKind File
public static final DocumentSourceKind Stream
public static final DocumentSourceKind Structure
public static DocumentSourceKind 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 static DocumentSourceKind[] values()
for (DocumentSourceKind c : DocumentSourceKind.values()) System.out.println(c);
Copyright © 2026. All rights reserved.