public static enum PluginDescriptor.ClassLookupStrategy extends java.lang.Enum<PluginDescriptor.ClassLookupStrategy>
| Enum Constant and Description |
|---|
GlobalFirst
Lookup at global classloader first
|
LocalFirst
Lookup at plugin classloader first.
|
| Modifier and Type | Method and Description |
|---|---|
static PluginDescriptor.ClassLookupStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PluginDescriptor.ClassLookupStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PluginDescriptor.ClassLookupStrategy LocalFirst
public static final PluginDescriptor.ClassLookupStrategy GlobalFirst
public static PluginDescriptor.ClassLookupStrategy[] values()
for (PluginDescriptor.ClassLookupStrategy c : PluginDescriptor.ClassLookupStrategy.values()) System.out.println(c);
public static PluginDescriptor.ClassLookupStrategy 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