Package org.eclipse.jdt.debug.core
Enum Class IJavaExceptionBreakpoint.SuspendOnRecurrenceStrategy
java.lang.Object
java.lang.Enum<IJavaExceptionBreakpoint.SuspendOnRecurrenceStrategy>
org.eclipse.jdt.debug.core.IJavaExceptionBreakpoint.SuspendOnRecurrenceStrategy
- All Implemented Interfaces:
Serializable
,Comparable<IJavaExceptionBreakpoint.SuspendOnRecurrenceStrategy>
,Constable
- Enclosing interface:
- IJavaExceptionBreakpoint
public static enum IJavaExceptionBreakpoint.SuspendOnRecurrenceStrategy
extends Enum<IJavaExceptionBreakpoint.SuspendOnRecurrenceStrategy>
Constants for telling the debugger for each exception breakpoint how to handle multiple occurrences of the same exception instance, which can
happen via re-throwing or multiple finally clauses in the call stack.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionSignals that this setting has not yet been configured for a given breakpointSignals that the breakpoint should not cause suspending more than once.Signals that the exception breakpoint should always cause suspending. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
RECURRENCE_UNCONFIGURED
Signals that this setting has not yet been configured for a given breakpoint -
SUSPEND_ALWAYS
Signals that the exception breakpoint should always cause suspending. -
SKIP_RECURRENCES
Signals that the breakpoint should not cause suspending more than once. This does not influence the way how the debugger reacts to uncaught exceptions.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-