public static enum ConfigurationPropertyName.Form extends Enum<ConfigurationPropertyName.Form>
| Enum Constant and Description |
|---|
DASHED
The dashed configuration form (used for toString; lower-case with only
alphanumeric characters and dashes).
|
ORIGINAL
The original form as specified when the name was created or adapted.
|
UNIFORM
The uniform configuration form (used for equals/hashCode; lower-case with only
alphanumeric characters).
|
| Modifier and Type | Method and Description |
|---|---|
static ConfigurationPropertyName.Form |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigurationPropertyName.Form[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigurationPropertyName.Form ORIGINAL
foo-bar" = "foo-bar"fooBar" = "fooBar"foo_bar" = "foo_bar"[Foo.bar]" = "Foo.bar"public static final ConfigurationPropertyName.Form DASHED
foo-bar" = "foo-bar"fooBar" = "foobar"foo_bar" = "foobar"[Foo.bar]" = "Foo.bar"public static final ConfigurationPropertyName.Form UNIFORM
foo-bar" = "foobar"fooBar" = "foobar"foo_bar" = "foobar"[Foo.bar]" = "Foo.bar"public static ConfigurationPropertyName.Form[] values()
for (ConfigurationPropertyName.Form c : ConfigurationPropertyName.Form.values()) System.out.println(c);
public static ConfigurationPropertyName.Form 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 Pivotal Software, Inc.. All rights reserved.