public enum ComponentNamingMode extends Enum<ComponentNamingMode>
| Enum Constant and Description |
|---|
CREATE
Create a new namespace for this component.
|
NONE
No component namespace is available.
|
USE_MODULE
Use the module's namespace for the component namespace.
|
| Modifier and Type | Method and Description |
|---|---|
static ComponentNamingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComponentNamingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComponentNamingMode NONE
public static final ComponentNamingMode USE_MODULE
public static final ComponentNamingMode CREATE
public static ComponentNamingMode[] values()
for (ComponentNamingMode c : ComponentNamingMode.values()) System.out.println(c);
public static ComponentNamingMode 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 JBoss by Red Hat. All rights reserved.