public static enum StartupStatus.StatusItem.Level extends Enum<StartupStatus.StatusItem.Level>
| Enum Constant and Description |
|---|
FATAL |
INFO |
NOT_EXECUTED |
WARNING |
| Modifier and Type | Method and Description |
|---|---|
static StartupStatus.StatusItem.Level |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StartupStatus.StatusItem.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StartupStatus.StatusItem.Level INFO
public static final StartupStatus.StatusItem.Level WARNING
public static final StartupStatus.StatusItem.Level FATAL
public static final StartupStatus.StatusItem.Level NOT_EXECUTED
public static StartupStatus.StatusItem.Level[] values()
for (StartupStatus.StatusItem.Level c : StartupStatus.StatusItem.Level.values()) System.out.println(c);
public static StartupStatus.StatusItem.Level 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 © 2022. All rights reserved.