public enum SqlExpressionType extends java.lang.Enum<SqlExpressionType>
| Enum Constant and Description |
|---|
ANY |
ARITH |
BOOL |
INVALID |
LIST |
NOT_SET |
STRING |
| Modifier and Type | Method and Description |
|---|---|
static SqlExpressionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SqlExpressionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlExpressionType NOT_SET
public static final SqlExpressionType BOOL
public static final SqlExpressionType STRING
public static final SqlExpressionType ARITH
public static final SqlExpressionType ANY
public static final SqlExpressionType LIST
public static final SqlExpressionType INVALID
public static SqlExpressionType[] values()
for (SqlExpressionType c : SqlExpressionType.values()) System.out.println(c);
public static SqlExpressionType 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 nullCopyright © 2023. All rights reserved.