public static enum ApplicationPlugin.PluginType extends Enum<ApplicationPlugin.PluginType>
| Enum Constant and Description |
|---|
APPLICATION
A plugin that provides fundamental features for the application.
|
PRIMARY
A plugin that defines the application.
|
UTILITY
A plugin that provides functionality for the primary and application plugins.
|
| Modifier and Type | Method and Description |
|---|---|
static ApplicationPlugin.PluginType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApplicationPlugin.PluginType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApplicationPlugin.PluginType PRIMARY
public static final ApplicationPlugin.PluginType APPLICATION
public static final ApplicationPlugin.PluginType UTILITY
public static ApplicationPlugin.PluginType[] values()
for (ApplicationPlugin.PluginType c : ApplicationPlugin.PluginType.values()) System.out.println(c);
public static ApplicationPlugin.PluginType 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 © 2018 Atlassian. All rights reserved.