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