public enum TelemetryTraceLevel extends java.lang.Enum<TelemetryTraceLevel>
| Enum Constant and Description |
|---|
FORCE_TOP_LEVEL |
NESTED |
NO_TRACE |
TOP_LEVEL |
| Modifier and Type | Method and Description |
|---|---|
static TelemetryTraceLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TelemetryTraceLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TelemetryTraceLevel FORCE_TOP_LEVEL
public static final TelemetryTraceLevel TOP_LEVEL
public static final TelemetryTraceLevel NESTED
public static final TelemetryTraceLevel NO_TRACE
public static TelemetryTraceLevel[] values()
for (TelemetryTraceLevel c : TelemetryTraceLevel.values()) System.out.println(c);
public static TelemetryTraceLevel 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