public enum NamesLookup extends Enum<NamesLookup> implements UnaryOperator<String>
| Enum Constant and Description |
|---|
LOWERCASE |
NO_TRANSFORMATION |
UPPERCASE |
| Modifier and Type | Method and Description |
|---|---|
String |
apply(String name) |
static NamesLookup |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NamesLookup[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfidentitypublic static final NamesLookup UPPERCASE
public static final NamesLookup LOWERCASE
public static final NamesLookup NO_TRANSFORMATION
public static NamesLookup[] values()
for (NamesLookup c : NamesLookup.values()) System.out.println(c);
public static NamesLookup 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 © 2004–2023 JSQLParser. All rights reserved.