
public enum PhaserMode extends Enum<PhaserMode>
| Enum Constant and Description |
|---|
SIG
SIGNAL mode for phaser registration.
|
SIG_WAIT
SIGNAL_WAIT mode for phaser registration.
|
SIG_WAIT_SINGLE
SIGNAL_WAIT_SINGLE mode for phaser registration.
|
WAIT
WAIT mode for phaser registration.
|
| Modifier and Type | Field and Description |
|---|---|
static PhaserMode |
DEFAULT_MODE
The default phaser registration mode.
|
| Modifier and Type | Method and Description |
|---|---|
static PhaserMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PhaserMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PhaserMode SIG
public static final PhaserMode WAIT
public static final PhaserMode SIG_WAIT
public static final PhaserMode SIG_WAIT_SINGLE
public static final PhaserMode DEFAULT_MODE
public static PhaserMode[] values()
for (PhaserMode c : PhaserMode.values()) System.out.println(c);
public static PhaserMode 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 © 2014 Rice University - Department of Computer Science. All rights reserved.