public enum DictMatchingMethod extends Enum<DictMatchingMethod>
| 列挙型定数と説明 |
|---|
lemma |
prefix |
regex |
stem |
string_exact |
substring |
suffix |
word_exact |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
String |
getExpression() |
String |
toString() |
static DictMatchingMethod |
valueOf(String name)
指定した名前を持つこの型の列挙型定数を返します。
|
static DictMatchingMethod |
valueOfExpression(String expression) |
static DictMatchingMethod[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。
|
static Collection<DictMatchingMethod> |
valuesCollection() |
public static final DictMatchingMethod string_exact
public static final DictMatchingMethod word_exact
public static final DictMatchingMethod prefix
public static final DictMatchingMethod suffix
public static final DictMatchingMethod substring
public static final DictMatchingMethod regex
public static final DictMatchingMethod stem
public static final DictMatchingMethod lemma
public static DictMatchingMethod[] values()
for(DictMatchingMethod c: DictMatchingMethod.values()) System.out.println(c);
public static DictMatchingMethod valueOf(String name)
name - 返される列挙型定数の名前。IllegalArgumentException - この列挙型に、指定した名前の定数がない場合NullPointerException - 引数がnullの場合public String toString()
toString クラス内 Enum<DictMatchingMethod>public String getExpression()
public static DictMatchingMethod valueOfExpression(String expression)
public static Collection<DictMatchingMethod> valuesCollection()
Copyright © 2019. All rights reserved.