public enum ErrorLoggingMode extends Enum<ErrorLoggingMode>
(derby.log) modes supported by the JUnit Derby helper.| Enum Constant and Description |
|---|
Default
No special config; derby will write to
derby.log file in the
derby.system.home. |
Null
No logging; equivalent to redirecting logs to
/dev/null. |
| Modifier and Type | Method and Description |
|---|---|
static ErrorLoggingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ErrorLoggingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ErrorLoggingMode Default
derby.log file in the
derby.system.home.public static final ErrorLoggingMode Null
/dev/null.public static ErrorLoggingMode[] values()
for (ErrorLoggingMode c : ErrorLoggingMode.values()) System.out.println(c);
public static ErrorLoggingMode 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 © 2015-2016 Development Entropy (deventropy.org) Contributors