public enum BreakpointKind extends Enum<BreakpointKind>
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
static BreakpointKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BreakpointKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BreakpointKind Line
public static final BreakpointKind Exception
public static final BreakpointKind Method
public static final BreakpointKind Field
public static BreakpointKind[] values()
for (BreakpointKind c : BreakpointKind.values()) System.out.println(c);
public static BreakpointKind 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 nullpublic String getName()
Copyright © 2018. All rights reserved.