public enum WordFinderVersion extends java.lang.Enum<WordFinderVersion>
| Enum Constant and Description |
|---|
LATEST
Used to obtain the latest available version.
|
VERSION_2
The version used for Acrobat 3.x, 4.x.
|
VERSION_3
For Acrobat 5.0 without accessibility enabled.
|
VERSION_4
For Acrobat 5.0 with accessibility enabled.
|
| Modifier and Type | Method and Description |
|---|---|
static WordFinderVersion |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WordFinderVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WordFinderVersion LATEST
public static final WordFinderVersion VERSION_2
public static final WordFinderVersion VERSION_3
public static final WordFinderVersion VERSION_4
public static WordFinderVersion[] values()
for (WordFinderVersion c : WordFinderVersion.values()) System.out.println(c);
public static WordFinderVersion valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null