public static enum JQuery.StringMatcher extends java.lang.Enum<JQuery.StringMatcher>
Enum Constant and Description |
---|
CONTAINS |
ENDSWITH |
EXACT |
EXISTS |
STARTSWITH |
WORD |
Modifier and Type | Method and Description |
---|---|
static JQuery.StringMatcher |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JQuery.StringMatcher[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JQuery.StringMatcher EXACT
public static final JQuery.StringMatcher WORD
public static final JQuery.StringMatcher STARTSWITH
public static final JQuery.StringMatcher ENDSWITH
public static final JQuery.StringMatcher CONTAINS
public static final JQuery.StringMatcher EXISTS
public static JQuery.StringMatcher[] values()
for (JQuery.StringMatcher c : JQuery.StringMatcher.values()) System.out.println(c);
public static JQuery.StringMatcher valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null