public enum RunningMode extends Enum<RunningMode>
Enum Constant and Description |
---|
ADMIN_ONLY
The server has only started services necessary to accept and handle administrative requests.
|
NORMAL
Normal operations; server has started all configured services and is capable of handling end user requests.
|
Modifier and Type | Method and Description |
---|---|
static RunningMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RunningMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RunningMode NORMAL
public static final RunningMode ADMIN_ONLY
public static RunningMode[] values()
for (RunningMode c : RunningMode.values()) System.out.println(c);
public static RunningMode 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 © 2023 JBoss by Red Hat. All rights reserved.