public enum Config extends Enum<Config>
| Enum Constant and Description |
|---|
PACKAGES_MAPPING
Defines packages remapping rules.
|
PER_CLASS_MAPPING
Allows to customize mapping per class file.
|
TEXT_FILES_MAPPING
Allows to customize mapping per text file.
|
| Modifier and Type | Method and Description |
|---|---|
static Config |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Config[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Config PACKAGES_MAPPING
public static final Config PER_CLASS_MAPPING
public static final Config TEXT_FILES_MAPPING
public static Config[] values()
for (Config c : Config.values()) System.out.println(c);
public static Config 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 © 2020 JBoss by Red Hat. All rights reserved.