public enum IllegalCodePointType extends Enum<IllegalCodePointType>
| Enum Constant and Description |
|---|
CONTROL_CHARACTER |
ISOLATED_SURROGATE |
NON_CHARACTER |
PRIVATE_USE_CHARACTER |
| Modifier and Type | Method and Description |
|---|---|
static IllegalCodePointType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IllegalCodePointType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IllegalCodePointType ISOLATED_SURROGATE
public static final IllegalCodePointType NON_CHARACTER
public static final IllegalCodePointType PRIVATE_USE_CHARACTER
public static final IllegalCodePointType CONTROL_CHARACTER
public static IllegalCodePointType[] values()
for (IllegalCodePointType c : IllegalCodePointType.values()) System.out.println(c);
public static IllegalCodePointType 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 © 2010-2012 University of Erlangen-Nürnberg - Open Source Research Group. All Rights Reserved.