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