public static enum Component.Status extends Enum<Component.Status>
| Enum Constant and Description |
|---|
ACTIVE |
FAILED_ACTIVATION |
SATISFIED |
UNKNOWN |
UNSATISFIED_CONFIGURATION |
UNSATISFIED_REFERENCE |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Component.Status |
value(String o) |
static Component.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Component.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Component.Status ACTIVE
public static final Component.Status SATISFIED
public static final Component.Status UNSATISFIED_CONFIGURATION
public static final Component.Status UNSATISFIED_REFERENCE
public static final Component.Status FAILED_ACTIVATION
public static final Component.Status UNKNOWN
public static Component.Status[] values()
for (Component.Status c : Component.Status.values()) System.out.println(c);
public static Component.Status 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 static Component.Status value(String o)
public String toString()
toString in class Enum<Component.Status>Copyright © 2007–2020 The Apache Software Foundation. All rights reserved.