public static enum PinyinFormat.YuCharType extends Enum<PinyinFormat.YuCharType>
1) 带两点的u 2) 用v来替代 3) 用u: 来替代
| 枚举常量和说明 |
|---|
WITH_U_AND_COLON
The option indicates that the output of 'ü' is "u:".
|
WITH_U_UNICODE
The option indicates that the output of 'ü' is "ü" in Unicode form.
|
WITH_V
The option indicates that the output of 'ü' is "v".
|
public static final PinyinFormat.YuCharType WITH_U_AND_COLON
public static final PinyinFormat.YuCharType WITH_V
public static final PinyinFormat.YuCharType WITH_U_UNICODE
public static PinyinFormat.YuCharType[] values()
for (PinyinFormat.YuCharType c : PinyinFormat.YuCharType.values()) System.out.println(c);
public static PinyinFormat.YuCharType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2021. All rights reserved.