public enum KieContainerStatus extends Enum<KieContainerStatus>
| Enum Constant and Description |
|---|
CREATING |
DISPOSING |
FAILED |
STARTED |
STOPPED |
| Modifier and Type | Method and Description |
|---|---|
static KieContainerStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KieContainerStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KieContainerStatus CREATING
public static final KieContainerStatus STARTED
public static final KieContainerStatus FAILED
public static final KieContainerStatus DISPOSING
public static final KieContainerStatus STOPPED
public static KieContainerStatus[] values()
for (KieContainerStatus c : KieContainerStatus.values()) System.out.println(c);
public static KieContainerStatus 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 nullCopyright © 2001–2016 JBoss by Red Hat. All rights reserved.