public static enum AnalyzerParameter.Values extends Enum<AnalyzerParameter.Values>
| 限定符和类型 | 方法和说明 |
|---|---|
String |
toString() |
static AnalyzerParameter.Values |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static AnalyzerParameter.Values[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final AnalyzerParameter.Values IkMaxWord
public static final AnalyzerParameter.Values IkSmart
public static final AnalyzerParameter.Values English
public static final AnalyzerParameter.Values Simple
public static final AnalyzerParameter.Values Whitespace
public static final AnalyzerParameter.Values Stop
public static final AnalyzerParameter.Values Keyword
public static AnalyzerParameter.Values[] values()
for (AnalyzerParameter.Values c : AnalyzerParameter.Values.values()) System.out.println(c);
public static AnalyzerParameter.Values valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public String toString()
toString 在类中 Enum<AnalyzerParameter.Values>Copyright © 2019. All rights reserved.