public enum NamingConvention extends java.lang.Enum<NamingConvention>
| Enum Constant and Description |
|---|
CAMEL |
CAMEL_SNAKE |
DONER |
FLAT |
KEBAB |
PASCAL |
PASCAL_SNAKE |
SCREAMING_KEBAB |
SCREAMING_SNAKE |
SNAKE |
TRAIN |
UPPER_FLAT |
| Modifier and Type | Method and Description |
|---|---|
static NamingConvention |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NamingConvention[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NamingConvention FLAT
public static final NamingConvention UPPER_FLAT
public static final NamingConvention CAMEL
public static final NamingConvention PASCAL
public static final NamingConvention SNAKE
public static final NamingConvention SCREAMING_SNAKE
public static final NamingConvention CAMEL_SNAKE
public static final NamingConvention PASCAL_SNAKE
public static final NamingConvention KEBAB
public static final NamingConvention DONER
public static final NamingConvention SCREAMING_KEBAB
public static final NamingConvention TRAIN
public static NamingConvention[] values()
for (NamingConvention c : NamingConvention.values()) System.out.println(c);
public static NamingConvention valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null