public static enum Plugin.Engine.PoolStrategy.Default extends Enum<Plugin.Engine.PoolStrategy.Default> implements Plugin.Engine.PoolStrategy
Plugin.Engine.PoolStrategy.Default, Plugin.Engine.PoolStrategy.Eager
Enum Constant and Description |
---|
EXTENDED
Enables extended class file parsing that extracts parameter names from debug information, if available.
|
FAST
Enables faster class file parsing that does not process debug information of a class file.
|
Modifier and Type | Method and Description |
---|---|
TypePool |
typePool(ClassFileLocator classFileLocator)
Creates a type pool.
|
static Plugin.Engine.PoolStrategy.Default |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Plugin.Engine.PoolStrategy.Default[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Plugin.Engine.PoolStrategy.Default FAST
public static final Plugin.Engine.PoolStrategy.Default EXTENDED
public static Plugin.Engine.PoolStrategy.Default[] values()
for (Plugin.Engine.PoolStrategy.Default c : Plugin.Engine.PoolStrategy.Default.values()) System.out.println(c);
public static Plugin.Engine.PoolStrategy.Default 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 nullpublic TypePool typePool(ClassFileLocator classFileLocator)
typePool
in interface Plugin.Engine.PoolStrategy
classFileLocator
- The class file locator to use.Copyright © 2014–2019. All rights reserved.