public static enum NamingConventions.DefaultNamingConventions extends Enum<NamingConventions.DefaultNamingConventions> implements NamingConvention
| Enum Constant and Description |
|---|
IDENTITY |
LOWERCASE_WORDS |
UPPERCASE_WORDS |
| Modifier and Type | Method and Description |
|---|---|
static NamingConventions.DefaultNamingConventions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NamingConventions.DefaultNamingConventions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOftoDisplayName, toPropertypublic static final NamingConventions.DefaultNamingConventions IDENTITY
public static final NamingConventions.DefaultNamingConventions LOWERCASE_WORDS
public static final NamingConventions.DefaultNamingConventions UPPERCASE_WORDS
public static NamingConventions.DefaultNamingConventions[] values()
for (NamingConventions.DefaultNamingConventions c : NamingConventions.DefaultNamingConventions.values()) System.out.println(c);
public static NamingConventions.DefaultNamingConventions 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 © 2017. All rights reserved.