|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<LogMode>
org.junit.contrib.java.lang.system.LogMode
Mode of the
StandardErrorStreamLog and the
StandardOutputStreamLog.
@Deprecated public enum LogMode
| Enum Constant Summary | |
|---|---|
LOG_AND_WRITE_TO_STREAM
Deprecated. Please use SystemErrRule.enableLog() or
SystemOutRule.enableLog().
Record the writes while they are still written to the stream. |
|
LOG_ONLY
Deprecated. Please use SystemErrRule.enableLog().mute() or
SystemOutRule.enableLog().mute().
Capture the writes to the stream. Nothing is written to the stream itself. |
|
| Method Summary | |
|---|---|
static LogMode |
valueOf(String name)
Deprecated. Returns the enum constant of this type with the specified name. |
static LogMode[] |
values()
Deprecated. 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 LogMode LOG_ONLY
SystemErrRule.enableLog().mute() or
SystemOutRule.enableLog().mute().
Capture the writes to the stream. Nothing is written to the stream itself.
public static final LogMode LOG_AND_WRITE_TO_STREAM
SystemErrRule.enableLog() or
SystemOutRule.enableLog().
Record the writes while they are still written to the stream.
| Method Detail |
|---|
public static LogMode[] values()
for (LogMode c : LogMode.values()) System.out.println(c);
public static LogMode 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 null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||