public enum StrategyType extends java.lang.Enum<StrategyType>
PluginManager| Enum Constant and Description |
|---|
after
Plugin must be initialized strictly after some other plugin.
|
any
Plugin doesn't define any specific strategy.
|
before
Plugin must be initialized strictly before some other plugin.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getDescription()
Returns plugin strategy type description.
|
javax.swing.ImageIcon |
getIcon()
Returns plugin strategy type icon.
|
static StrategyType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StrategyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StrategyType any
public static final StrategyType before
public static final StrategyType after
public static StrategyType[] values()
for (StrategyType c : StrategyType.values()) System.out.println(c);
public static StrategyType 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 nullpublic javax.swing.ImageIcon getIcon()
public java.lang.String getDescription()