public enum ReloadLevel extends Enum<ReloadLevel>
| Enum Constant and Description |
|---|
NOTHING |
RESTART_METRIC |
RESTART_REPORTER |
START_METRIC |
STOP_METRIC |
| Modifier and Type | Method and Description |
|---|---|
static ReloadLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReloadLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReloadLevel START_METRIC
public static final ReloadLevel STOP_METRIC
public static final ReloadLevel RESTART_METRIC
public static final ReloadLevel RESTART_REPORTER
public static final ReloadLevel NOTHING
public static ReloadLevel[] values()
for (ReloadLevel c : ReloadLevel.values()) System.out.println(c);
public static ReloadLevel 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 The Apache Software Foundation. All rights reserved.