public enum ParserScope extends Enum<ParserScope>
| Enum Constant and Description |
|---|
CACHE
The cache scope
|
CACHE_CONTAINER
The cache-container scope
|
CACHE_TEMPLATE
The cache template scope
|
GLOBAL
The top-level scope at which cache containers, jgroups and threads are defined
|
| Modifier and Type | Method and Description |
|---|---|
static ParserScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParserScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParserScope GLOBAL
public static final ParserScope CACHE_CONTAINER
public static final ParserScope CACHE
public static final ParserScope CACHE_TEMPLATE
public static ParserScope[] values()
for (ParserScope c : ParserScope.values()) System.out.println(c);
public static ParserScope 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 JBoss by Red Hat. All rights reserved.