public enum NT extends Enum<NT>
| Enum Constant and Description |
|---|
A
上文 [参与]亚太经合组织的活动
|
B
下文 中央电视台[报道]
|
C
特征词的一般性前缀 北京[电影]学院
|
D
机构名的特征词 国务院侨务[办公室]
|
F
特征词的译名性前缀 美国[摩托罗拉]公司
|
G
特征词的地名性前缀 交通银行[北京]分行
|
H
特征词的机构名前缀 [中共中央]顾问委员会
|
I
特征词的特殊性前缀 [华谊]医院
|
J
特征词的简称性前缀 [巴]政府
|
K
整个机构 [麦当劳]
|
L
方位词
|
M
数词 公交集团[五]分公司
|
P
单字碎片
|
S
句子的开头
|
W
符号
|
X
连接词 北京电视台[和]天津电视台
|
Z
非机构名成份
|
| Modifier and Type | Method and Description |
|---|---|
static NT |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NT[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NT A
public static final NT B
public static final NT X
public static final NT C
public static final NT F
public static final NT G
public static final NT H
public static final NT I
public static final NT J
public static final NT K
public static final NT L
public static final NT M
public static final NT P
public static final NT W
public static final NT D
public static final NT Z
public static final NT S
public static NT[] values()
for (NT c : NT.values()) System.out.println(c);
public static NT 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.