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