public enum PdfOcrOutputType extends Enum<PdfOcrOutputType>
Enum Constant and Description |
---|
DATA
Processing of an image in the engine with data output
|
PDF
Creating a PDF file
|
PDFA
Creating a PDF-A file
|
Modifier and Type | Method and Description |
---|---|
static PdfOcrOutputType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PdfOcrOutputType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final PdfOcrOutputType DATA
public static final PdfOcrOutputType PDF
public static final PdfOcrOutputType PDFA
public static PdfOcrOutputType[] values()
for (PdfOcrOutputType c : PdfOcrOutputType.values()) System.out.println(c);
public static PdfOcrOutputType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant with the specified name
NullPointerException
- if the argument is null
Copyright © 1998–2022 iText Group NV. All rights reserved.