public static enum PathLimits.CharType extends Enum<PathLimits.CharType>
| Enum Constant and Description |
|---|
FULL_UNICODE |
UNICODE1 |
UTF8 |
| Modifier and Type | Method and Description |
|---|---|
static PathLimits.CharType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PathLimits.CharType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PathLimits.CharType UTF8
public static final PathLimits.CharType UNICODE1
public static final PathLimits.CharType FULL_UNICODE
public static PathLimits.CharType[] values()
for (PathLimits.CharType c : PathLimits.CharType.values()) System.out.println(c);
public static PathLimits.CharType 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 © 2017. All rights reserved.