public enum Kase extends Enum<Kase>
| Enum Constant and Description |
|---|
KEBABCASE |
LOWERCAMELCASE |
LOWERCASE |
NONE |
SENTENCECASE |
SNAKECASE |
UPPERCAMELCASE |
UPPERCASE |
| Modifier and Type | Method and Description |
|---|---|
static Kase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Kase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Kase UPPERCASE
public static final Kase LOWERCASE
public static final Kase UPPERCAMELCASE
public static final Kase LOWERCAMELCASE
public static final Kase KEBABCASE
public static final Kase SNAKECASE
public static final Kase SENTENCECASE
public static final Kase NONE
public static Kase[] values()
for (Kase c : Kase.values()) System.out.println(c);
public static Kase 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.