public static enum InternalFlags.IncludeStackTraceOption extends Enum<InternalFlags.IncludeStackTraceOption>
Enum Constant and Description |
---|
COMPLETE
Full stack trace for everything
|
OFF
No stack trace collection
|
ONLY_FOR_DECLARING_SOURCE
Minimum stack trace collection (Default)
|
Modifier and Type | Method and Description |
---|---|
static InternalFlags.IncludeStackTraceOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InternalFlags.IncludeStackTraceOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InternalFlags.IncludeStackTraceOption OFF
public static final InternalFlags.IncludeStackTraceOption ONLY_FOR_DECLARING_SOURCE
public static final InternalFlags.IncludeStackTraceOption COMPLETE
public static InternalFlags.IncludeStackTraceOption[] values()
for (InternalFlags.IncludeStackTraceOption c : InternalFlags.IncludeStackTraceOption.values()) System.out.println(c);
public static InternalFlags.IncludeStackTraceOption 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 © 2006–2018 Google, Inc.. All rights reserved.