public static enum Like.MatchMode extends Enum<Like.MatchMode>
Enum Constant and Description |
---|
LIKE |
REGEX
The escape char is typically not used in regex mode.
|
SIMILAR |
Modifier and Type | Method and Description |
---|---|
static Like.MatchMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Like.MatchMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Like.MatchMode LIKE
public static final Like.MatchMode SIMILAR
public static final Like.MatchMode REGEX
public static Like.MatchMode[] values()
for (Like.MatchMode c : Like.MatchMode.values()) System.out.println(c);
public static Like.MatchMode 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 nullCopyright © 2019. All rights reserved.