public enum LibraryFlags extends java.lang.Enum<LibraryFlags>
| Enum Constant and Description |
|---|
CHECK_SUB_FONTS
Check for substitution fonts at toolkit initialization.
|
DISABLE_MEMORY_SUBALLOCATOR
Disable suballocation of memory.
|
IGNORE_CURRENT_DIRECTORY
Ignore the current working directory only when searching for fonts
|
IGNORE_DEFAULT_DIRECTORIES
Search for fonts ignore compiled in default directories
|
INIT_FORMS_EXTENSION
Loads the Forms Extension dependencies, otherwise they are not loaded.
|
INIT_PDFEDIT
Initialize PDFEdit if this is true.
|
NO_FLAGS
No flag is specified.
|
PREFER_LOCAL_FONTS
Prefer fonts loaded from directories other than those controlled by the operating system
|
| Modifier and Type | Method and Description |
|---|---|
static LibraryFlags |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LibraryFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LibraryFlags NO_FLAGS
public static final LibraryFlags IGNORE_DEFAULT_DIRECTORIES
public static final LibraryFlags CHECK_SUB_FONTS
public static final LibraryFlags INIT_PDFEDIT
public static final LibraryFlags IGNORE_CURRENT_DIRECTORY
public static final LibraryFlags DISABLE_MEMORY_SUBALLOCATOR
public static final LibraryFlags PREFER_LOCAL_FONTS
public static final LibraryFlags INIT_FORMS_EXTENSION
public static LibraryFlags[] values()
for (LibraryFlags c : LibraryFlags.values()) System.out.println(c);
public static LibraryFlags 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