public enum CaseStyle extends Enum<CaseStyle>
| Enum Constant and Description |
|---|
camelCase |
lower_snake_case |
PascalCase |
UPPER_SNAKE_CASE |
| Modifier and Type | Method and Description |
|---|---|
static CaseStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CaseStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CaseStyle PascalCase
public static final CaseStyle camelCase
public static final CaseStyle UPPER_SNAKE_CASE
public static final CaseStyle lower_snake_case
public static CaseStyle[] values()
for (CaseStyle c : CaseStyle.values()) System.out.println(c);
public static CaseStyle 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. All rights reserved.