public enum PluginOptionsScope extends Enum<PluginOptionsScope> implements Key
AbstractPluginOptionsFactory
Enum Constant and Description |
---|
chartType
Represents a plugin options set to all charts of the same type.
|
global
Represents a plugin options set globally.
|
Modifier and Type | Method and Description |
---|---|
static PluginOptionsScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PluginOptionsScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PluginOptionsScope global
public static final PluginOptionsScope chartType
public static PluginOptionsScope[] values()
for (PluginOptionsScope c : PluginOptionsScope.values()) System.out.println(c);
public static PluginOptionsScope 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 null