public enum UnicodeEscapes extends Enum<UnicodeEscapes>
| Modifier and Type | Method and Description |
|---|---|
static void |
appendJavaStyleEscapedCodePoint(int codePoint,
StringBuilder sb) |
static char |
lowSurrogate(int codePoint) |
static UnicodeEscapes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnicodeEscapes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static UnicodeEscapes[] values()
for (UnicodeEscapes c : UnicodeEscapes.values()) System.out.println(c);
public static UnicodeEscapes 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 nullpublic static void appendJavaStyleEscapedCodePoint(int codePoint,
StringBuilder sb)
public static char lowSurrogate(int codePoint)
Copyright © 1992–2022 Daniel Sun. All rights reserved.