public static enum LikeExpression.KeyWord extends Enum<LikeExpression.KeyWord>
| Modifier and Type | Method and Description |
|---|---|
static LikeExpression.KeyWord |
from(String keyword) |
static LikeExpression.KeyWord |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LikeExpression.KeyWord[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LikeExpression.KeyWord LIKE
public static final LikeExpression.KeyWord ILIKE
public static final LikeExpression.KeyWord RLIKE
public static final LikeExpression.KeyWord REGEXP
public static LikeExpression.KeyWord[] values()
for (LikeExpression.KeyWord c : LikeExpression.KeyWord.values()) System.out.println(c);
public static LikeExpression.KeyWord 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 static LikeExpression.KeyWord from(String keyword)
Copyright © 2004–2023 JSQLParser. All rights reserved.