public static enum PathLimits.CharType extends java.lang.Enum<PathLimits.CharType>
| Enum Constant | Description |
|---|---|
FULL_UNICODE |
|
UNICODE1 |
|
UTF8 |
| Modifier and Type | Method | Description |
|---|---|---|
static PathLimits.CharType |
valueOf(java.lang.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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2018. All rights reserved.