|
Arquillian Persistence Extension API 1.0.0.Alpha4 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<CleanupStrategy>
org.jboss.arquillian.persistence.CleanupStrategy
public enum CleanupStrategy
Defines strategy to be applied for @Cleanup operation.
| Enum Constant Summary | |
|---|---|
STRICT
Cleans entire database. |
|
USED_ROWS_ONLY
Deletes only those entries which were defined in data sets. |
|
USED_TABLES_ONLY
Deletes only those tables which were used in data sets. |
|
| Method Summary | |
|---|---|
static CleanupStrategy |
getDefault()
|
static CleanupStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static CleanupStrategy[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final CleanupStrategy STRICT
public static final CleanupStrategy USED_ROWS_ONLY
public static final CleanupStrategy USED_TABLES_ONLY
| Method Detail |
|---|
public static CleanupStrategy[] values()
for (CleanupStrategy c : CleanupStrategy.values()) System.out.println(c);
public static CleanupStrategy valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic static CleanupStrategy getDefault()
|
Arquillian Persistence Extension API 1.0.0.Alpha4 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||