public static enum SQLValue.ValueType extends Enum<SQLValue.ValueType>
SQLValue
can representEnum Constant and Description |
---|
INTEGER_VALUE |
PLACEHOLDER |
STRING_VALUE |
TABLE_COLUMN |
Modifier and Type | Method and Description |
---|---|
static SQLValue.ValueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SQLValue.ValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SQLValue.ValueType TABLE_COLUMN
public static final SQLValue.ValueType PLACEHOLDER
public static final SQLValue.ValueType INTEGER_VALUE
public static final SQLValue.ValueType STRING_VALUE
public static SQLValue.ValueType[] values()
for (SQLValue.ValueType c : SQLValue.ValueType.values()) System.out.println(c);
public static SQLValue.ValueType 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 © 2017 Clazzes.org. All rights reserved.