public enum RunType extends Enum<RunType>
| Enum Constant and Description |
|---|
JAT
Run into Java Application Thread.
|
JAT_SYNC |
JIT
Run into JRebirth Internal Thread.
|
JIT_SYNC |
JTP
Queue and run into the JRebirth Thread Pool.
|
JTP_SYNC |
SAME |
| Modifier and Type | Method and Description |
|---|---|
static RunType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RunType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RunType JAT
public static final RunType JAT_SYNC
public static final RunType JIT
public static final RunType JIT_SYNC
public static final RunType JTP
public static final RunType JTP_SYNC
public static final RunType SAME
public static RunType[] values()
for (RunType c : RunType.values()) System.out.println(c);
public static RunType 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–2015 JRebirth OSS. All rights reserved.