public enum PreprocessingType extends Enum<PreprocessingType>
| Enum Constant and Description |
|---|
NONE
No preprocessing.
|
OCR
OCR preprocessing.
|
| Modifier and Type | Method and Description |
|---|---|
static PreprocessingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PreprocessingType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final PreprocessingType NONE
public static final PreprocessingType OCR
public static PreprocessingType[] values()
for (PreprocessingType c : PreprocessingType.values()) System.out.println(c);
public static PreprocessingType 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 © 2024. All rights reserved.