public enum AddonStatus extends Enum<AddonStatus>
| Modifier and Type | Method and Description |
|---|---|
boolean |
isFailed() |
boolean |
isLoaded() |
boolean |
isMissing() |
boolean |
isStarted() |
static AddonStatus |
valueOf(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.
|
public static final AddonStatus MISSING
public static final AddonStatus LOADED
public static final AddonStatus STARTED
public static final AddonStatus FAILED
public static AddonStatus[] values()
for (AddonStatus c : AddonStatus.values()) System.out.println(c);
public static AddonStatus 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 nullpublic boolean isMissing()
public boolean isLoaded()
public boolean isFailed()
public boolean isStarted()
Copyright © 2014 JBoss by Red Hat. All rights reserved.