protected static enum AbstractComponentManager.State extends java.lang.Enum<AbstractComponentManager.State>
Enum Constant and Description |
---|
active |
disabled |
disposed |
satisfied |
unsatisfiedReference |
Modifier and Type | Field and Description |
---|---|
private boolean |
actve |
private boolean |
enabled |
private boolean |
satisfed |
private int |
specState |
Modifier and Type | Method and Description |
---|---|
int |
getSpecState() |
boolean |
isActive() |
boolean |
isEnabled() |
boolean |
isSatisfied() |
static AbstractComponentManager.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AbstractComponentManager.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractComponentManager.State disposed
public static final AbstractComponentManager.State disabled
public static final AbstractComponentManager.State unsatisfiedReference
public static final AbstractComponentManager.State satisfied
public static final AbstractComponentManager.State active
private final int specState
private final boolean enabled
private final boolean satisfed
private final boolean actve
public static AbstractComponentManager.State[] values()
for (AbstractComponentManager.State c : AbstractComponentManager.State.values()) System.out.println(c);
public static AbstractComponentManager.State 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 int getSpecState()
public boolean isEnabled()
public boolean isSatisfied()
public boolean isActive()