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