public static enum CloudDebuggerCallback.ClassType extends Enum<CloudDebuggerCallback.ClassType>
This enum must be synced with its C++ counterpart in gae_callback.h.
| Enum Constant and Description |
|---|
APPLICATION |
JDK |
RUNTIME |
SAFE_RUNTIME |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static CloudDebuggerCallback.ClassType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CloudDebuggerCallback.ClassType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CloudDebuggerCallback.ClassType JDK
public static final CloudDebuggerCallback.ClassType SAFE_RUNTIME
public static final CloudDebuggerCallback.ClassType RUNTIME
public static final CloudDebuggerCallback.ClassType APPLICATION
public static final CloudDebuggerCallback.ClassType UNKNOWN
public static CloudDebuggerCallback.ClassType[] values()
for (CloudDebuggerCallback.ClassType c : CloudDebuggerCallback.ClassType.values()) System.out.println(c);
public static CloudDebuggerCallback.ClassType 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 © 2022. All rights reserved.