public static enum ConfigProperties.NamingStrategy extends Enum<ConfigProperties.NamingStrategy>
| Enum Constant and Description |
|---|
FROM_CONFIG |
KEBAB_CASE |
VERBATIM |
| Modifier and Type | Method and Description |
|---|---|
abstract String |
getName(String name) |
static ConfigProperties.NamingStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigProperties.NamingStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigProperties.NamingStrategy FROM_CONFIG
public static final ConfigProperties.NamingStrategy VERBATIM
public static final ConfigProperties.NamingStrategy KEBAB_CASE
public static ConfigProperties.NamingStrategy[] values()
for (ConfigProperties.NamingStrategy c : ConfigProperties.NamingStrategy.values()) System.out.println(c);
public static ConfigProperties.NamingStrategy 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.