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