public enum NamingCase extends Enum<NamingCase>
| Enum Constant and Description |
|---|
LOWER_CASE |
LOWER_CASE_QUOTED |
MIXED_CASE |
MIXED_CASE_QUOTED |
UPPER_CASE |
UPPER_CASE_QUOTED |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static NamingCase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NamingCase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NamingCase UPPER_CASE
public static final NamingCase UPPER_CASE_QUOTED
public static final NamingCase LOWER_CASE
public static final NamingCase LOWER_CASE_QUOTED
public static final NamingCase MIXED_CASE
public static final NamingCase MIXED_CASE_QUOTED
public static NamingCase[] values()
for (NamingCase c : NamingCase.values()) System.out.println(c);
public static NamingCase 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 nullpublic String toString()
toString in class Enum<NamingCase>Copyright © 2019. All rights reserved.