public static enum RuntimeCapabilityRegistry.RuntimeStatus extends Enum<RuntimeCapabilityRegistry.RuntimeStatus>
| Enum Constant and Description |
|---|
NORMAL
Runtime services are functioning normally as per their persistent configuration
and the process' current running mode.
|
RELOAD_REQUIRED
The process needs to be reloaded to bring runtime services for a capability in sync with
their persistent configuration.
|
RESTART_REQUIRED
The process needs to be restarted to bring runtime services for a capability in sync with
their persistent configuration.
|
| Modifier and Type | Method and Description |
|---|---|
static RuntimeCapabilityRegistry.RuntimeStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RuntimeCapabilityRegistry.RuntimeStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RuntimeCapabilityRegistry.RuntimeStatus NORMAL
public static final RuntimeCapabilityRegistry.RuntimeStatus RELOAD_REQUIRED
public static final RuntimeCapabilityRegistry.RuntimeStatus RESTART_REQUIRED
public static RuntimeCapabilityRegistry.RuntimeStatus[] values()
for (RuntimeCapabilityRegistry.RuntimeStatus c : RuntimeCapabilityRegistry.RuntimeStatus.values()) System.out.println(c);
public static RuntimeCapabilityRegistry.RuntimeStatus 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 © 2019 JBoss by Red Hat. All rights reserved.