public enum SeedStrategy extends Enum<SeedStrategy>
| Enum Constant and Description |
|---|
CLEAN_INSERT |
INSERT |
REFRESH |
UPDATE |
| Modifier and Type | Method and Description |
|---|---|
org.dbunit.operation.DatabaseOperation |
getOperation() |
static SeedStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SeedStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SeedStrategy CLEAN_INSERT
public static final SeedStrategy INSERT
public static final SeedStrategy REFRESH
public static final SeedStrategy UPDATE
public static SeedStrategy[] values()
for (SeedStrategy c : SeedStrategy.values()) System.out.println(c);
public static SeedStrategy 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 nullpublic org.dbunit.operation.DatabaseOperation getOperation()
Copyright © 2016. All rights reserved.