public static enum PluginWrapperFilter.Decision extends Enum<PluginWrapperFilter.Decision>
| Enum Constant and Description |
|---|
EXCLUDE
The filter wants the plugin excluded.
|
INCLUDE
The filter wants the plugin included.
|
NO_OPINION
The filter doesn't care about the plugin.
|
| Modifier and Type | Method and Description |
|---|---|
static PluginWrapperFilter.Decision |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PluginWrapperFilter.Decision[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PluginWrapperFilter.Decision EXCLUDE
PluginWrapperFilter returns this result then the result is final.public static final PluginWrapperFilter.Decision NO_OPINION
public static final PluginWrapperFilter.Decision INCLUDE
public static PluginWrapperFilter.Decision[] values()
for (PluginWrapperFilter.Decision c : PluginWrapperFilter.Decision.values()) System.out.println(c);
public static PluginWrapperFilter.Decision 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 © 2004-2016. All Rights Reserved.