public enum InstallationMode extends java.lang.Enum<InstallationMode>
| Enum Constant and Description |
|---|
LOCAL
Denotes a plugin installed locally to the host application.
|
REMOTE
Denotes a plugin installed from a remote plugin.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getKey() |
static com.atlassian.fugue.Option<InstallationMode> |
of(java.lang.String name) |
static InstallationMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InstallationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InstallationMode REMOTE
public static final InstallationMode LOCAL
public static InstallationMode[] values()
for (InstallationMode c : InstallationMode.values()) System.out.println(c);
public static InstallationMode 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 java.lang.String getKey()
public static com.atlassian.fugue.Option<InstallationMode> of(java.lang.String name)
Copyright © 2013 Atlassian. All Rights Reserved.