public static enum ForkJoinPoolMonitor.Status extends java.lang.Enum<ForkJoinPoolMonitor.Status>
| Enum Constant and Description |
|---|
ACTIVE |
QUIESCENT |
SHUTDOWN |
TERMINATED |
TERMINATING |
| Modifier and Type | Method and Description |
|---|---|
static ForkJoinPoolMonitor.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ForkJoinPoolMonitor.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ForkJoinPoolMonitor.Status ACTIVE
public static final ForkJoinPoolMonitor.Status QUIESCENT
public static final ForkJoinPoolMonitor.Status SHUTDOWN
public static final ForkJoinPoolMonitor.Status TERMINATING
public static final ForkJoinPoolMonitor.Status TERMINATED
public static ForkJoinPoolMonitor.Status[] values()
for (ForkJoinPoolMonitor.Status c : ForkJoinPoolMonitor.Status.values()) System.out.println(c);
public static ForkJoinPoolMonitor.Status 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