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