public enum DsqlKeyword extends Enum<DsqlKeyword>
| Enum Constant and Description |
|---|
AND |
ASC |
BY |
DESC |
FROM |
LIKE |
LIMIT |
NOT |
OFFSET |
OR |
ORDER |
SELECT |
WHERE |
| Modifier and Type | Method and Description |
|---|---|
static boolean |
isKeywordIgnoreCase(String value) |
static DsqlKeyword |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DsqlKeyword[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DsqlKeyword ASC
public static final DsqlKeyword DESC
public static final DsqlKeyword SELECT
public static final DsqlKeyword FROM
public static final DsqlKeyword WHERE
public static final DsqlKeyword ORDER
public static final DsqlKeyword BY
public static final DsqlKeyword LIMIT
public static final DsqlKeyword OFFSET
public static final DsqlKeyword AND
public static final DsqlKeyword OR
public static final DsqlKeyword NOT
public static final DsqlKeyword LIKE
public static DsqlKeyword[] values()
for (DsqlKeyword c : DsqlKeyword.values()) System.out.println(c);
public static DsqlKeyword 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 boolean isKeywordIgnoreCase(String value)
Copyright © 2018 MuleSoft, Inc.. All rights reserved.