public enum TraceConfigRecordMode extends Enum<TraceConfigRecordMode>
| Enum Constant and Description |
|---|
ECHO_TO_CONSOLE |
RECORD_AS_MUCH_AS_POSSIBLE |
RECORD_CONTINUOUSLY |
RECORD_UNTIL_FULL |
| Modifier and Type | Method and Description |
|---|---|
static TraceConfigRecordMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TraceConfigRecordMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TraceConfigRecordMode RECORD_UNTIL_FULL
public static final TraceConfigRecordMode RECORD_CONTINUOUSLY
public static final TraceConfigRecordMode RECORD_AS_MUCH_AS_POSSIBLE
public static final TraceConfigRecordMode ECHO_TO_CONSOLE
public static TraceConfigRecordMode[] values()
for (TraceConfigRecordMode c : TraceConfigRecordMode.values()) System.out.println(c);
public static TraceConfigRecordMode 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 © 2020. All rights reserved.