public static enum PluginSource.Type extends java.lang.Enum<PluginSource.Type>
| Enum Constant and Description |
|---|
CONFIG
Explizit in der Config-Datei angegebene Plugin-Ordner.
|
SYSTEM
Plugins im Ordner "plugins" innerhalb des Programm-Ordners von Jameica.
|
USER
Plugins im Ordner "plugins" innerhalb des Benutzer-Verzeichnisses ".jameica".
|
| Modifier and Type | Field and Description |
|---|---|
static PluginSource.Type |
DEFAULT
Die Default-Plugin-Quelle.
|
| Modifier and Type | Method and Description |
|---|---|
static PluginSource.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PluginSource.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PluginSource.Type SYSTEM
public static final PluginSource.Type CONFIG
public static final PluginSource.Type USER
public static final PluginSource.Type DEFAULT
public static PluginSource.Type[] values()
for (PluginSource.Type c : PluginSource.Type.values()) System.out.println(c);
public static PluginSource.Type 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 null