|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<AddonStatus>
org.stanwood.media.source.xbmc.updater.AddonStatus
public enum AddonStatus
Used to represent the different statuses of addons
Enum Constant Summary | |
---|---|
INSTALLED
Indicates that the addon is installed on the users system |
|
NOT_INSTALLED
Indicates that the addon is not installed on the users system |
|
OUT_OF_DATE
Indicates that the plugin is instlled, but their is a new version avaliable |
Method Summary | |
---|---|
java.lang.String |
getDisplayName()
Used to get the display name of the status |
static AddonStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static AddonStatus[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final AddonStatus INSTALLED
public static final AddonStatus NOT_INSTALLED
public static final AddonStatus OUT_OF_DATE
Method Detail |
---|
public static AddonStatus[] values()
for (AddonStatus c : AddonStatus.values()) System.out.println(c);
public static AddonStatus 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 name
java.lang.NullPointerException
- if the argument is nullpublic java.lang.String getDisplayName()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |