public enum SpringContextScope extends Enum<SpringContextScope>
Enum Constant and Description |
---|
APPLICATION |
CONFIGURATION |
ENVIRONMENT |
STANDALONE |
Modifier and Type | Method and Description |
---|---|
String |
getFriendlyName() |
static SpringContextScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpringContextScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpringContextScope STANDALONE
public static final SpringContextScope ENVIRONMENT
public static final SpringContextScope APPLICATION
public static final SpringContextScope CONFIGURATION
public static SpringContextScope[] values()
for (SpringContextScope c : SpringContextScope.values()) System.out.println(c);
public static SpringContextScope 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 nullpublic String getFriendlyName()
Copyright © 2023 Frank!Framework. All rights reserved.