public static enum CompareLike.LikeType extends java.lang.Enum<CompareLike.LikeType>
| Enum Constant and Description |
|---|
ILIKE
ILIKE (case-insensitive LIKE).
|
LIKE
LIKE.
|
REGEXP
REGEXP
|
| Modifier and Type | Method and Description |
|---|---|
static CompareLike.LikeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CompareLike.LikeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompareLike.LikeType LIKE
public static final CompareLike.LikeType ILIKE
public static final CompareLike.LikeType REGEXP
public static CompareLike.LikeType[] values()
for (CompareLike.LikeType c : CompareLike.LikeType.values()) System.out.println(c);
public static CompareLike.LikeType 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