public enum WorkingTableScope extends Enum<WorkingTableScope>
| Enum Constant and Description |
|---|
GLOBAL
Create the working-tables (JAILER_*) in the source database.
|
LOCAL_DATABASE
Create a local database (H2) for the working-tables (JAILER_*).
|
SESSION_LOCAL
Create the working-tables (JAILER_*) as temporary tables in the source database.
|
TRANSACTION_LOCAL
Not supported.
|
| Modifier and Type | Method and Description |
|---|---|
static WorkingTableScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorkingTableScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkingTableScope GLOBAL
public static final WorkingTableScope SESSION_LOCAL
public static final WorkingTableScope TRANSACTION_LOCAL
public static final WorkingTableScope LOCAL_DATABASE
public static WorkingTableScope[] values()
for (WorkingTableScope c : WorkingTableScope.values()) System.out.println(c);
public static WorkingTableScope 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 null