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