public static enum CaseSwitcher.Case extends Enum<CaseSwitcher.Case>
| Enum Constant and Description |
|---|
Camel |
Dot |
Kebab |
Pascal |
Scream |
Snake |
| Modifier and Type | Method and Description |
|---|---|
static CaseSwitcher.Case |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CaseSwitcher.Case[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CaseSwitcher.Case Snake
public static final CaseSwitcher.Case Camel
public static final CaseSwitcher.Case Kebab
public static final CaseSwitcher.Case Pascal
public static final CaseSwitcher.Case Dot
public static final CaseSwitcher.Case Scream
public final String example
public static CaseSwitcher.Case[] values()
for (CaseSwitcher.Case c : CaseSwitcher.Case.values()) System.out.println(c);
public static CaseSwitcher.Case 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 © 2023. All rights reserved.