public enum NR extends Enum<NR>
| Enum Constant and Description |
|---|
A
Po 以上之外其他的角色
|
B
Pf 姓氏 【张】华平先生
|
C
Pm 双名的首字 张【华】平先生
|
D
Pt 双名的末字 张华【平】先生
|
E
Ps 单名 张【浩】说:“我是一个好人”
|
F
Ppf 前缀 【老】刘、【小】李
|
G
Plf 后缀 王【总】、刘【老】、肖【氏】、吴【妈】、叶【帅】
|
K
Pp 人名的上文 又【来到】于洪洋的家。
|
L
Pn 人名的下文 新华社记者黄文【摄】
|
M
Ppn 两个中国人名之间的成分 编剧邵钧林【和】稽道青说
|
S
句子的开头
|
U
Ppf 人名的上文和姓成词 这里【有关】天培的壮烈
|
V
Pnw 三字人名的末字和下文成词 龚学平等领导, 邓颖【超生】前
|
X
Pfm 姓与双名的首字成词 【王国】维、
|
Y
Pfs 姓与单名成词 【高峰】、【汪洋】
|
Z
Pmt 双名本身成词 张【朝阳】
|
| Modifier and Type | Method and Description |
|---|---|
static NR |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NR[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NR B
public static final NR C
public static final NR D
public static final NR E
public static final NR F
public static final NR G
public static final NR K
public static final NR L
public static final NR M
public static final NR U
public static final NR V
public static final NR X
public static final NR Y
public static final NR Z
public static final NR A
public static final NR S
public static NR[] values()
for (NR c : NR.values()) System.out.println(c);
public static NR 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 © 2014–2021 码农场. All rights reserved.