public static enum ValueParser.URLCaseFolding extends Enum<ValueParser.URLCaseFolding>
| Enum Constant and Description |
|---|
LOWER
Fold to lower case
|
NONE
No folding
|
UNSET
No folding set
|
UPPER
Fold to upper case
|
| Modifier and Type | Method and Description |
|---|---|
static ValueParser.URLCaseFolding |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValueParser.URLCaseFolding[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValueParser.URLCaseFolding UNSET
public static final ValueParser.URLCaseFolding NONE
public static final ValueParser.URLCaseFolding LOWER
public static final ValueParser.URLCaseFolding UPPER
public static ValueParser.URLCaseFolding[] values()
for (ValueParser.URLCaseFolding c : ValueParser.URLCaseFolding.values()) System.out.println(c);
public static ValueParser.URLCaseFolding 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 © 2005–2019 The Apache Software Foundation. All rights reserved.