Package jslx.dbutilities.dbutil
Enum DbCreateTask.Type
- java.lang.Object
-
- java.lang.Enum<DbCreateTask.Type>
-
- jslx.dbutilities.dbutil.DbCreateTask.Type
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DbCreateTask.Type>
- Enclosing class:
- DbCreateTask
public static enum DbCreateTask.Type extends java.lang.Enum<DbCreateTask.Type>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FULL_SCRIPT
NONE
TABLES
TABLES_ALTER
TABLES_EXCEL
TABLES_EXCEL_ALTER
TABLES_INSERT
TABLES_INSERT_ALTER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DbCreateTask.Type
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DbCreateTask.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final DbCreateTask.Type NONE
-
FULL_SCRIPT
public static final DbCreateTask.Type FULL_SCRIPT
-
TABLES
public static final DbCreateTask.Type TABLES
-
TABLES_INSERT
public static final DbCreateTask.Type TABLES_INSERT
-
TABLES_ALTER
public static final DbCreateTask.Type TABLES_ALTER
-
TABLES_EXCEL
public static final DbCreateTask.Type TABLES_EXCEL
-
TABLES_INSERT_ALTER
public static final DbCreateTask.Type TABLES_INSERT_ALTER
-
TABLES_EXCEL_ALTER
public static final DbCreateTask.Type TABLES_EXCEL_ALTER
-
-
Method Detail
-
values
public static DbCreateTask.Type[] 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 (DbCreateTask.Type c : DbCreateTask.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DbCreateTask.Type valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-