public enum MatchingMethod extends Enum<MatchingMethod>
| 列挙型定数と説明 |
|---|
COMPLETE
The strings completely match.
|
EQ |
GE |
GT |
IN |
LANGUAGEPATH
Language path matching.
|
LE |
LT |
PARTIAL
Partial matching.
|
PREFIX
Prefix matching.
|
REGEX
Regular expression matching.
|
SUFFIX
Suffix matching.
|
| 修飾子とタイプ | メソッドと説明 |
|---|---|
static MatchingMethod |
valueOf(String name)
指定した名前を持つこの型の列挙型定数を返します。
|
static MatchingMethod[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。
|
public static final MatchingMethod COMPLETE
public static final MatchingMethod PARTIAL
public static final MatchingMethod PREFIX
public static final MatchingMethod SUFFIX
public static final MatchingMethod REGEX
public static final MatchingMethod LANGUAGEPATH
public static final MatchingMethod IN
public static final MatchingMethod EQ
public static final MatchingMethod GT
public static final MatchingMethod GE
public static final MatchingMethod LT
public static final MatchingMethod LE
public static MatchingMethod[] values()
for(MatchingMethod c: MatchingMethod.values()) System.out.println(c);
public static MatchingMethod valueOf(String name)
name - 返される列挙型定数の名前。IllegalArgumentException - この列挙型に、指定した名前の定数がない場合NullPointerException - 引数がnullの場合Copyright © 2019. All rights reserved.