@Deprecated public enum ExceptionHandledAt extends java.lang.Enum<ExceptionHandledAt>
| Enum Constant and Description |
|---|
Platform
Deprecated.
Exception was handled by some platform handlers.
|
Unhandled
Deprecated.
Exception was not handled.
|
UserCode
Deprecated.
Exception was handled in user code.
|
| Modifier and Type | Method and Description |
|---|---|
static ExceptionHandledAt |
valueOf(java.lang.String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static ExceptionHandledAt[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExceptionHandledAt Unhandled
public static final ExceptionHandledAt UserCode
public static final ExceptionHandledAt Platform
public static ExceptionHandledAt[] values()
for (ExceptionHandledAt c : ExceptionHandledAt.values()) System.out.println(c);
public static ExceptionHandledAt 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 null