Package com.google.apphosting.runtime
Enum CloudDebuggerCallback.ClassType
- java.lang.Object
-
- java.lang.Enum<CloudDebuggerCallback.ClassType>
-
- com.google.apphosting.runtime.CloudDebuggerCallback.ClassType
-
- All Implemented Interfaces:
Serializable,Comparable<CloudDebuggerCallback.ClassType>
- Enclosing interface:
- CloudDebuggerCallback
public static enum CloudDebuggerCallback.ClassType extends Enum<CloudDebuggerCallback.ClassType>
Classification of a Java class.This enum must be synced with its C++ counterpart in gae_callback.h.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPLICATIONJDKRUNTIMESAFE_RUNTIMEUNKNOWN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CloudDebuggerCallback.ClassTypevalueOf(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.
-
-
-
Enum Constant Detail
-
JDK
public static final CloudDebuggerCallback.ClassType JDK
-
SAFE_RUNTIME
public static final CloudDebuggerCallback.ClassType SAFE_RUNTIME
-
RUNTIME
public static final CloudDebuggerCallback.ClassType RUNTIME
-
APPLICATION
public static final CloudDebuggerCallback.ClassType APPLICATION
-
UNKNOWN
public static final CloudDebuggerCallback.ClassType UNKNOWN
-
-
Method Detail
-
values
public static CloudDebuggerCallback.ClassType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CloudDebuggerCallback.ClassType c : CloudDebuggerCallback.ClassType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CloudDebuggerCallback.ClassType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-