public static enum IColumnType.Function extends Enum<IColumnType.Function>
| Enum Constant and Description |
|---|
CURRENT_DATE |
CURRENT_TIME |
CURRENT_TIMESTAMP |
| Modifier and Type | Method and Description |
|---|---|
static IColumnType.Function |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IColumnType.Function[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IColumnType.Function CURRENT_TIMESTAMP
public static final IColumnType.Function CURRENT_DATE
public static final IColumnType.Function CURRENT_TIME
public static IColumnType.Function[] values()
for (IColumnType.Function c : IColumnType.Function.values()) System.out.println(c);
public static IColumnType.Function 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.