Package org.apache.tika.eval.app.db
Enum JDBCUtil.CREATE_TABLE
- java.lang.Object
-
- java.lang.Enum<JDBCUtil.CREATE_TABLE>
-
- org.apache.tika.eval.app.db.JDBCUtil.CREATE_TABLE
-
- All Implemented Interfaces:
Serializable
,Comparable<JDBCUtil.CREATE_TABLE>
- Enclosing class:
- JDBCUtil
public static enum JDBCUtil.CREATE_TABLE extends Enum<JDBCUtil.CREATE_TABLE>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DROP_IF_EXISTS
SKIP_IF_EXISTS
THROW_EX_IF_EXISTS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
DROP_IF_EXISTS
public static final JDBCUtil.CREATE_TABLE DROP_IF_EXISTS
-
SKIP_IF_EXISTS
public static final JDBCUtil.CREATE_TABLE SKIP_IF_EXISTS
-
THROW_EX_IF_EXISTS
public static final JDBCUtil.CREATE_TABLE THROW_EX_IF_EXISTS
-
-
Method Detail
-
values
public static JDBCUtil.CREATE_TABLE[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (JDBCUtil.CREATE_TABLE c : JDBCUtil.CREATE_TABLE.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JDBCUtil.CREATE_TABLE valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-