public static enum FileUtil.LetterCase extends Enum<FileUtil.LetterCase>
enum representing letter cases.| Enum Constant and Description |
|---|
LOWER
Lower-case, lowercase or minuscule
|
UPPER
Upper-case, uppercase, capital or majuscule
|
| Modifier and Type | Method and Description |
|---|---|
static FileUtil.LetterCase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileUtil.LetterCase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileUtil.LetterCase UPPER
public static final FileUtil.LetterCase LOWER
public static FileUtil.LetterCase[] values()
for (FileUtil.LetterCase c : FileUtil.LetterCase.values()) System.out.println(c);
public static FileUtil.LetterCase 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 © 2024. All rights reserved.