public enum PDETextFlags extends java.lang.Enum<PDETextFlags>
| Enum Constant and Description |
|---|
KPDETEXT_CHAR
Character (text run with only one character).
|
KPDETEXT_GET_BOUNDS
Fill in the left and right bounds of the text run's bounding box.
|
KPDETEXT_PAGE_SPACE
Obtain the advance width in page space.
|
KPDETEXT_RUN
Text run.
|
| Modifier and Type | Method and Description |
|---|---|
static PDETextFlags |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PDETextFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PDETextFlags KPDETEXT_RUN
public static final PDETextFlags KPDETEXT_CHAR
public static final PDETextFlags KPDETEXT_PAGE_SPACE
public static final PDETextFlags KPDETEXT_GET_BOUNDS
public static PDETextFlags[] values()
for (PDETextFlags c : PDETextFlags.values()) System.out.println(c);
public static PDETextFlags 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