public static enum Config.CodeStructure extends Enum<Config.CodeStructure>
| Enum Constant and Description |
|---|
FLAT |
PACKAGE_NESTED |
| Modifier and Type | Method and Description |
|---|---|
static Config.CodeStructure |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Config.CodeStructure[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Config.CodeStructure FLAT
public static final Config.CodeStructure PACKAGE_NESTED
public static Config.CodeStructure[] values()
for (Config.CodeStructure c : Config.CodeStructure.values()) System.out.println(c);
public static Config.CodeStructure 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 © 2015–2022 Red Hat. All rights reserved.