public enum BooleanToStatement extends Enum<BooleanToStatement> implements IToPreparedStatement<BooleanColumn>
| Enum Constant and Description |
|---|
BOOLEAN_TO_INT |
BOOLEAN_TO_STRING |
| Modifier and Type | Method and Description |
|---|---|
static BooleanToStatement |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BooleanToStatement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfsetpublic static final BooleanToStatement BOOLEAN_TO_STRING
public static final BooleanToStatement BOOLEAN_TO_INT
public static BooleanToStatement[] values()
for (BooleanToStatement c : BooleanToStatement.values()) System.out.println(c);
public static BooleanToStatement 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 © 2020. All rights reserved.