public static enum JDBCUtil.CREATE_TABLE extends Enum<JDBCUtil.CREATE_TABLE>
Enum Constant and Description |
---|
DROP_IF_EXISTS |
SKIP_IF_EXISTS |
THROW_EX_IF_EXISTS |
Modifier and Type | Method and Description |
---|---|
static JDBCUtil.CREATE_TABLE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JDBCUtil.CREATE_TABLE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JDBCUtil.CREATE_TABLE DROP_IF_EXISTS
public static final JDBCUtil.CREATE_TABLE SKIP_IF_EXISTS
public static final JDBCUtil.CREATE_TABLE THROW_EX_IF_EXISTS
public static JDBCUtil.CREATE_TABLE[] values()
for (JDBCUtil.CREATE_TABLE c : JDBCUtil.CREATE_TABLE.values()) System.out.println(c);
public static JDBCUtil.CREATE_TABLE 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 © 2007–2021 The Apache Software Foundation. All rights reserved.