public static enum AutoConfigureTestDatabase.Replace extends java.lang.Enum<AutoConfigureTestDatabase.Replace>
| Enum Constant and Description |
|---|
ANY
Replace any DataSource bean (auto-configured or manually defined).
|
AUTO_CONFIGURED
Only replace auto-configured DataSource.
|
NONE
Don't replace the application default DataSource.
|
| Modifier and Type | Method and Description |
|---|---|
static AutoConfigureTestDatabase.Replace |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AutoConfigureTestDatabase.Replace[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoConfigureTestDatabase.Replace ANY
public static final AutoConfigureTestDatabase.Replace AUTO_CONFIGURED
public static final AutoConfigureTestDatabase.Replace NONE
public static AutoConfigureTestDatabase.Replace[] values()
for (AutoConfigureTestDatabase.Replace c : AutoConfigureTestDatabase.Replace.values()) System.out.println(c);
public static AutoConfigureTestDatabase.Replace valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null