public static enum BaseNode.Status extends Enum<BaseNode.Status>
| Enum Constant and Description |
|---|
NOT_WORD_1
不是词语的结尾
|
UNDEFINED_0
未指定,用于删除词条
|
WORD_END_3
是个词语的结尾,并且没有继续
|
WORD_MIDDLE_2
是个词语的结尾,并且还可以继续
|
| Modifier and Type | Method and Description |
|---|---|
static BaseNode.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BaseNode.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BaseNode.Status UNDEFINED_0
public static final BaseNode.Status NOT_WORD_1
public static final BaseNode.Status WORD_MIDDLE_2
public static final BaseNode.Status WORD_END_3
public static BaseNode.Status[] values()
for (BaseNode.Status c : BaseNode.Status.values()) System.out.println(c);
public static BaseNode.Status 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.