public static enum JrbUncaughtExceptionHandler.UncaughtExceptionHandlerType extends Enum<JrbUncaughtExceptionHandler.UncaughtExceptionHandlerType>
| Enum Constant and Description |
|---|
DefaultHandler
Default Thread Uncaught Exception Handler.
|
JATHandler
JavaFX Application Thread Uncaught Exception Handler.
|
JITHandler
JRebirth Internal Thread Uncaught Exception Handler.
|
PoolHandler
JRebirth Thread Pool Uncaught Exception Handler.
|
| Modifier and Type | Method and Description |
|---|---|
static JrbUncaughtExceptionHandler.UncaughtExceptionHandlerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JrbUncaughtExceptionHandler.UncaughtExceptionHandlerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JrbUncaughtExceptionHandler.UncaughtExceptionHandlerType JITHandler
public static final JrbUncaughtExceptionHandler.UncaughtExceptionHandlerType JATHandler
public static final JrbUncaughtExceptionHandler.UncaughtExceptionHandlerType PoolHandler
public static final JrbUncaughtExceptionHandler.UncaughtExceptionHandlerType DefaultHandler
public static JrbUncaughtExceptionHandler.UncaughtExceptionHandlerType[] values()
for (JrbUncaughtExceptionHandler.UncaughtExceptionHandlerType c : JrbUncaughtExceptionHandler.UncaughtExceptionHandlerType.values()) System.out.println(c);
public static JrbUncaughtExceptionHandler.UncaughtExceptionHandlerType 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 © 2011–2014 JRebirth OSS. All rights reserved.