public static enum ProgressMonitor.Task extends Enum<ProgressMonitor.Task>
| Enum Constant and Description |
|---|
DATABASE_INFORMATION
This is the task for importing/exporting the database information
|
TABLE_CREATION
This is the task of creating a table
|
TABLE_DATA
This is the task of importing/exporting a single table data
|
TABLE_DEFINITION
This is the task for importing/exporting the table definitions
|
TABLE_ROW |
TABLES_DATA
This is the task of importing/exporting all tables data
|
| Modifier and Type | Method and Description |
|---|---|
static ProgressMonitor.Task |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProgressMonitor.Task[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProgressMonitor.Task DATABASE_INFORMATION
public static final ProgressMonitor.Task TABLE_DEFINITION
public static final ProgressMonitor.Task TABLE_CREATION
public static final ProgressMonitor.Task TABLES_DATA
public static final ProgressMonitor.Task TABLE_DATA
public static final ProgressMonitor.Task TABLE_ROW
public static ProgressMonitor.Task[] values()
for (ProgressMonitor.Task c : ProgressMonitor.Task.values()) System.out.println(c);
public static ProgressMonitor.Task 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 © 2018 Atlassian. All rights reserved.