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