public enum TextMatchMode extends Enum<TextMatchMode>
| Enum Constant and Description |
|---|
CONTAINS |
ENDS_WITH |
EQUALS |
STARTS_WITH |
| Modifier and Type | Method and Description |
|---|---|
String |
getI18nKey() |
String |
getStringValue() |
static TextMatchMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TextMatchMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextMatchMode CONTAINS
public static final TextMatchMode EQUALS
public static final TextMatchMode STARTS_WITH
public static final TextMatchMode ENDS_WITH
public static final String copyright
public static TextMatchMode[] values()
for (TextMatchMode c : TextMatchMode.values()) System.out.println(c);
public static TextMatchMode 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 nullpublic String getStringValue()
public String getI18nKey()