public enum NS extends Enum<NS>
| Enum Constant and Description |
|---|
A
地名的上文 我【来到】中关园
|
B
地名的下文刘家村/和/下岸村/相邻
|
C
中国地名的第一个字
|
D
中国地名的第二个字
|
E
中国地名的第三个字
|
G
其他整个的地名
|
H
中国地名的后缀海/淀区
|
S
句子的开头
|
X
连接词刘家村/和/下岸村/相邻
|
Z
其它非地名成分
|
| Modifier and Type | Method and Description |
|---|---|
static NS |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NS A
public static final NS B
public static final NS C
public static final NS D
public static final NS E
public static final NS G
public static final NS H
public static final NS X
public static final NS Z
public static final NS S
public static NS[] values()
for (NS c : NS.values()) System.out.println(c);
public static NS 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.