public enum NamecaseType extends Enum<NamecaseType>
| Enum Constant and Description |
|---|
CASE_CAMEL_LOWER
小駝峯
|
CASE_CAMEL_UPPER
大駝峯
|
CASE_NONE
不轉換
|
CASE_UNDERLINE
轉下劃線
|
| Modifier and Type | Method and Description |
|---|---|
static NamecaseType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NamecaseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NamecaseType CASE_NONE
public static final NamecaseType CASE_CAMEL_LOWER
public static final NamecaseType CASE_CAMEL_UPPER
public static final NamecaseType CASE_UNDERLINE
public static NamecaseType[] values()
for (NamecaseType c : NamecaseType.values()) System.out.println(c);
public static NamecaseType 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.