public enum ManagementContextType extends Enum<ManagementContextType>
Enum Constant and Description |
---|
ANY
The management context can be either the same as the main application context or a
child of the main application context.
|
CHILD
The management context is a separate context that is a child of the main
application context.
|
SAME
The management context is the same as the main application context.
|
Modifier and Type | Method and Description |
---|---|
static ManagementContextType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ManagementContextType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ManagementContextType SAME
public static final ManagementContextType CHILD
public static final ManagementContextType ANY
public static ManagementContextType[] values()
for (ManagementContextType c : ManagementContextType.values()) System.out.println(c);
public static ManagementContextType 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 null