public static enum IgnoreCountData.State extends java.lang.Enum<IgnoreCountData.State>
Enum Constant and Description |
---|
DISABLED
User has disabled ignore count, value stores last used number and is visible
in 'properties' dialog.
|
ENABLED
User has set ignore count for the breakpoint, value stores the number.
|
RESET
IDE has disabled ignore count because debugger finally has stopped on the breakpoint.
|
Modifier and Type | Method and Description |
---|---|
static IgnoreCountData.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IgnoreCountData.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IgnoreCountData.State ENABLED
public static final IgnoreCountData.State DISABLED
public static final IgnoreCountData.State RESET
DISABLED
only to give breakpoint handler a hint that this
change mustn't be applied to SDK.public static IgnoreCountData.State[] values()
for (IgnoreCountData.State c : IgnoreCountData.State.values()) System.out.println(c);
public static IgnoreCountData.State 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 nullCopyright (c) IBM Corp. and others 2000, 2016. All Rights Reserved.