public enum ApplicationConfigScope extends Enum<ApplicationConfigScope>
| Enum Constant and Description |
|---|
CLASS_PATH |
CURRENT |
DEFAULTS |
ENV |
HOME |
JVM |
LINE |
OPTIONS |
SYSTEM |
| Modifier and Type | Method and Description |
|---|---|
static ApplicationConfigScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApplicationConfigScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApplicationConfigScope DEFAULTS
public static final ApplicationConfigScope CLASS_PATH
public static final ApplicationConfigScope SYSTEM
public static final ApplicationConfigScope HOME
public static final ApplicationConfigScope CURRENT
public static final ApplicationConfigScope ENV
public static final ApplicationConfigScope JVM
public static final ApplicationConfigScope LINE
public static final ApplicationConfigScope OPTIONS
public static ApplicationConfigScope[] values()
for (ApplicationConfigScope c : ApplicationConfigScope.values()) System.out.println(c);
public static ApplicationConfigScope 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 © 2016–2018 Ultreia.io. All rights reserved.