public static enum CaseTransformer.Case extends Enum<CaseTransformer.Case>
Enum Constant and Description |
---|
LOWER |
PARA_CAPITAL
First Character is capitalized of a line
|
UPPER |
WORD_CAPITAL
First character of every word is capitalized
|
Modifier and Type | Method and Description |
---|---|
static CaseTransformer.Case |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CaseTransformer.Case[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CaseTransformer.Case LOWER
public static final CaseTransformer.Case UPPER
public static final CaseTransformer.Case PARA_CAPITAL
public static final CaseTransformer.Case WORD_CAPITAL
public static CaseTransformer.Case[] values()
for (CaseTransformer.Case c : CaseTransformer.Case.values()) System.out.println(c);
public static CaseTransformer.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 © 2018. All rights reserved.