public static enum Configuration.ClassLoaderPrecedence extends Enum<Configuration.ClassLoaderPrecedence>
| Enum Constant and Description |
|---|
CONTEXT_CLASS_LOADER
Use the current threads context class loader.
|
OGM_CLASS_LOADER
Use the class loader into which OGM was loaded.
|
| Modifier and Type | Method and Description |
|---|---|
static Configuration.ClassLoaderPrecedence |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Configuration.ClassLoaderPrecedence[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Configuration.ClassLoaderPrecedence CONTEXT_CLASS_LOADER
public static final Configuration.ClassLoaderPrecedence OGM_CLASS_LOADER
public static Configuration.ClassLoaderPrecedence[] values()
for (Configuration.ClassLoaderPrecedence c : Configuration.ClassLoaderPrecedence.values()) System.out.println(c);
public static Configuration.ClassLoaderPrecedence valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2015–2023 Neo Technology, Inc.. All rights reserved.