public enum DateToStatement extends Enum<DateToStatement> implements IToPreparedStatement<DateColumn>
| Enum Constant and Description |
|---|
DATE_TO_DATE |
DATE_TO_INT |
| Modifier and Type | Method and Description |
|---|---|
static DateToStatement |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DateToStatement[] |
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 DateToStatement DATE_TO_DATE
public static final DateToStatement DATE_TO_INT
public static DateToStatement[] values()
for (DateToStatement c : DateToStatement.values()) System.out.println(c);
public static DateToStatement 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.